-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 914 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": "create-c",
"version": "1.0.6",
"description": "Create C projects with zero configuration",
"main": "./dist/index.js",
"bin": {
"create-c": "./dist/index.js"
},
"scripts": {
"start": "npm run build && node dist/index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "./node_modules/.bin/tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JLL32/create-c.git"
},
"keywords": [
"scaffold",
"c",
"project",
"create",
"config"
],
"author": "JLL32",
"license": "MIT",
"bugs": {
"url": "https://github.com/JLL32/create-c/issues"
},
"homepage": "https://github.com/JLL32/create-c#readme",
"devDependencies": {
"@types/node": "^16.9.4",
"typescript": "^4.4.3"
},
"type": "module"
}