-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
45 lines (45 loc) · 1.13 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
{
"bin": {
"create-rubric-app": "./index.ts"
},
"dependencies": {
"@inquirer/prompts": "^6.0.1",
"boxen": "^8.0.1",
"chalk": "^5.3.0",
"clear": "^0.1.0",
"figlet": "^1.7.0",
"minimist": "^1.2.8",
"open": "^10.1.0"
},
"devDependencies": {
"@changesets/cli": "^2.27.9",
"@rubriclab/config": "*",
"@rubriclab/package": "*",
"next": "^14.2.14"
},
"homepage": "https://github.com/RubricLab/create-rubric-app#readme",
"keywords": [
"agent",
"ai",
"create",
"rubric"
],
"license": "gonuts",
"name": "create-rubric-app",
"repository": {
"type": "git",
"url": "https://github.com/RubricLab/create-rubric-app.git"
},
"scripts": {
"prepare": "bun x simple-git-hooks",
"bleed": "bun x npm-check-updates -u",
"format": "bun x biome format --write .",
"lint": "bun x biome check . && bun x biome lint .",
"lint:fix": "bun x biome check --fix --unsafe . && bun x biome lint --write --unsafe .",
"clean": "rm -rf .next && rm -rf node_modules"
},
"version": "1.6.17",
"simple-git-hooks": {
"post-commit": "bun run rubriclab-postcommit"
}
}