-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 782 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 782 Bytes
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
{
"name": "@scaffscript/create-project",
"description": "ScaffScript project initializer",
"version": "0.2.2",
"main": "src/index.ts",
"module": "src/index.ts",
"type": "module",
"author": "Undervolta",
"license": "MIT",
"keywords": [
"scaffscript",
"gamemaker",
"gml",
"scaff",
"script",
"superset",
"module"
],
"files": [
"dist",
"templates"
],
"devDependencies": {
"@types/bun": "latest"
},
"bin": {
"create-project": "dist/cli.js"
},
"scripts": {
"build": "bun build src/index.ts --outfile dist/cli.js --target node",
"prepack": "bun run build"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"@types/cross-spawn": "^6.0.6",
"cross-spawn": "^7.0.6"
}
}