-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.11 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
{
"name": "ai-code-bundler",
"version": "1.0.4",
"description": "A tool to bundle code for AI learning",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"aicb": "dist/cli.js"
},
"exports": {
".": "./dist/index.js",
"./cli": "./dist/cli.js"
},
"scripts": {
"build": "rollup -c",
"start": "node dist/cli.js",
"prepublishOnly": "npm run build",
"changeset": "changeset",
"version": "changeset version",
"release": "npm run build && changeset publish"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"ai",
"code",
"bundler",
"claude"
],
"author": "Your Name",
"license": "MIT",
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-replace": "^5.0.5",
"@rollup/plugin-typescript": "^11.1.6",
"@types/node": "^20.11.24",
"@types/yargs": "^17.0.32",
"rollup": "^4.12.0",
"tslib": "^2.6.2",
"typescript": "^5.3.3"
},
"dependencies": {
"ignore": "^5.3.1",
"yargs": "^17.7.2"
}
}