-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 920 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
{
"name": "@v3rse/binder",
"version": "1.1.0",
"description": "a build tool for thoughts. not for public consumption",
"scripts": {
"build": "tsc",
"clean": "rimraf ./bin",
"cb": "npm run clean && npm run build",
"prepublish": "npm run cb",
"start": "./bin/cli.js",
"test": "echo \"Error: no test specified\" && exit 1",
"version:major": "npm version major -m 'v%s'",
"version:minor": "npm version minor -m 'v%s'",
"version:patch": "npm version patch -m 'v%s'"
},
"repository": {
"url": "https://github.com/v3rse/binder"
},
"keywords": [],
"author": "Nana Adane (v3rse)",
"license": "MIT",
"engines": {
"node": ">= 18.12.1"
},
"bin": {
"binder": "bin/cli.js"
},
"devDependencies": {
"@types/node": "^18.16.3",
"rimraf": "^5.0.0",
"typescript": "^5.0.4"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
}
}