-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.66 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.66 KB
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
54
55
56
57
58
59
60
61
62
63
64
{
"name": "create-chayns-app",
"version": "1.2.10",
"private": false,
"description": "Create a new chayns® development project in one command.",
"keywords": [
"chayns",
"react",
"chayns-toolkit",
"chayns-components",
"starter-kit"
],
"bugs": {
"url": "https://github.com/TobitSoftware/create-chayns-app/issues",
"email": "leonhard.driesch@tobit.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TobitSoftware/create-chayns-app.git"
},
"license": "MIT",
"author": {
"name": "Leonhard Driesch",
"email": "leonhard.driesch@tobit.com"
},
"main": "index.js",
"bin": {
"create-chayns-app": "dist/index.cjs"
},
"type": "module",
"files": [
"dist",
"templates"
],
"engines": {
"node": ">=18"
},
"scripts": {
"build": "node ./scripts/build.js",
"watch": "node ./scripts/watch.js",
"format": "prettier . --ignore-path .gitignore --write",
"prepublishOnly": "npm run build",
"start": "node src/index.js"
},
"devDependencies": {
"@eslint/js": "^9.19.0",
"chalk": "^5.4.1",
"commander": "^13.1.0",
"enquirer": "^2.4.1",
"esbuild": "^0.24.2",
"eslint": "^9.19.0",
"execa": "^8.0.1",
"fast-glob": "^3.3.3",
"is-npm": "^6.0.0",
"ora": "^8.1.1",
"prettier": "^3.4.2",
"prettier-plugin-packagejson": "^2.5.8",
"semver": "^7.7.1",
"validate-npm-package-name": "^6.0.0"
},
"publishConfig": {
"access": "public"
}
}