-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
44 lines (44 loc) · 936 Bytes
/
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
{
"name": "@rose-pine/build",
"version": "0.9.1",
"description": "Theme generator for Rosé Pine",
"license": "MIT",
"repository": "rose-pine/build",
"funding": "https://github.com/rose-pine/palette?sponsor=1",
"author": "Rosé Pine <[email protected]>",
"type": "module",
"exports": "./dist/index.js",
"bin": "dist/cli.js",
"engines": {
"node": ">=16.4"
},
"scripts": {
"build": "del-cli dist && tsc && npm test",
"test": "del-cli test/mock/dist && ava",
"release": "npx np@latest",
"version": "npm run build"
},
"files": [
"dist"
],
"types": "dist",
"keywords": [
"build"
],
"publishConfig": {
"access": "public"
},
"dependencies": {
"@rose-pine/palette": "4.0.1",
"chokidar": "^3.5.3",
"meow": "^12.1.1"
},
"devDependencies": {
"@mvllow/tsconfig": "^0.2.2",
"@types/node": "^20.5.8",
"ava": "^5.3.1",
"del-cli": "^5.1.0",
"prettier": "^3.0.3",
"typescript": "^5.2.2"
}
}