-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.05 KB
/
package.json
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
{
"name": "@nanocss/nanocss",
"version": "0.0.6",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
"import": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"require": "./dist/index.cjs"
}
},
"bin": {
"nanocss": "./dist/cli/index.cjs"
},
"scripts": {
"build": "tsup",
"test": "vitest",
"nanocss": "node ./dist/cli/index.cjs"
},
"devDependencies": {
"@types/babel__core": "^7.20.5",
"@types/node": "^20.14.7",
"@types/react": "^18.3.3",
"tsup": "^8.1.0",
"typescript": "^5.5.2",
"vitest": "^1.6.0"
},
"peerDependencies": {
"react": "*"
},
"dependencies": {
"@babel/core": "^7.24.7",
"@babel/plugin-syntax-decorators": "^7.24.7",
"@babel/preset-typescript": "^7.24.7",
"@babel/types": "^7.24.7",
"@css-hooks/react": "^2.0.4",
"chokidar": "^3.6.0",
"citty": "^0.1.6",
"fast-glob": "^3.3.2"
}
}