-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.47 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.47 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "@coord/code-motion-react",
"version": "0.3.0",
"main": "dist/index.js",
"module": "dist/index.cjs",
"types": "dist/index.d.js",
"license": "MIT",
"type": "module",
"scripts": {
"build": "rollup --config rollup.config.js",
"dev": "pnpm run build --environment NODE_ENV=development --watch",
"lint": "tsc",
"test": "vitest run",
"test:watch": "vitest",
"clean": "rm -rf ./dist ./.turbo ./node_modules"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@coord/code-motion": "workspace:*",
"@coord/core": "workspace:*"
},
"devDependencies": {
"@coord/config": "workspace:*",
"@rollup/plugin-commonjs": "^25.0.3",
"@rollup/plugin-typescript": "^11.1.2",
"lodash-es": "^4.17.21",
"postcss": "^8.4.26",
"postcss-preset-env": "^9.0.0",
"rollup": "^3.26.3",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-typescript2": "^0.35.0",
"ts-dedent": "^2.2.0",
"@rollup/plugin-node-resolve": "^15.1.0",
"@types/lodash": "^4.14.195",
"@types/lodash-es": "^4.17.8",
"@types/node": "20.2.5",
"@types/react": "^18.2.15",
"autoprefixer": "10.4.14",
"clsx": "^1.2.1",
"fp-ts": "^2.16.0",
"lightningcss": "^1.21.5",
"lodash": "^4.17.21",
"postcss-variables-prefixer": "^1.2.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup-plugin-dts": "^5.3.0"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
}
}