-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.4 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
54
55
56
57
{
"name": "create-jscad-project",
"version": "1.2.0",
"description": "An npm / npx starter template for JSCAD projects using Typescript and Hot Reload preview",
"main": "index.js",
"bin": {
"create-my-template": "./bin/create-jscad-project.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/simplyhexagonal/create-jscad-project.git"
},
"files": [
"package-lock.json",
"package.json",
"bin",
"README.md",
"templates/*/.vscode/*",
"templates/*/output/.keep",
"templates/*/scripts/*",
"templates/*/src/*",
"templates/*/.gitignore",
"templates/*/package-lock.json",
"templates/*/package.json",
"templates/*/postcss.config.js",
"templates/*/tailwind.config.js",
"templates/*/tsconfig.json",
"templates/*/tsconfig.node.json",
"templates/*/vite.config.ts",
"templates/*/README.md"
],
"keywords": [
"jscad",
"typescript",
"hmr",
"hot-reload",
"hot",
"reload",
"preview",
"scad",
"openscad",
"openjscad",
"vscode"
],
"author": "Jean M. Lescure",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/simplyhexagonal/create-jscad-project/issues"
},
"homepage": "https://github.com/simplyhexagonal/create-jscad-project#readme",
"dependencies": {
"cross-spawn": "^7.0.3"
}
}