-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
53 lines (53 loc) · 1.2 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
48
49
50
51
52
53
{
"name": "benben",
"version": "0.0.3",
"description": "AI assistants for Programmer ,powerd by openai",
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"bin": {
"ben": "bin/index.mjs"
},
"files": [
"dist",
"bin"
],
"scripts": {
"build": "unbuild",
"dev": "unbuild --stub",
"lint": "eslint .",
"test": "vitest",
"release": "bumpp && npm publish",
"start": "esno src/index.ts",
"typecheck": "tsc --noEmit"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/course-dasheng/benben.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/course-dasheng/benben/issues"
},
"homepage": "https://github.com/course-dasheng/benben#readme",
"devDependencies": {
"@types/node": "^18.13.0",
"bumpp": "^8.2.1",
"chalk": "^5.2.0",
"cross-spawn": "^7.0.3",
"eslint": "^8.34.0",
"esno": "^0.16.3",
"inquirer": "^9.1.4",
"minimist": "^1.2.8",
"prompts": "^2.4.2",
"simple-git-hooks": "^2.8.1",
"typescript": "^4.9.5",
"unbuild": "^1.1.1",
"vitest": "^0.28.5"
}
}