-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.01 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.01 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
{
"name": "@scaffscript/core",
"version": "0.3.2",
"repository": {
"type": "git",
"url": "https://github.com/undervolta/scaffscript"
},
"main": "dist/index.cjs",
"devDependencies": {
"@types/bun": "^1.3.11"
},
"peerDependencies": {
"typescript": "^5"
},
"bin": {
"scaff": "./dist/index.cjs"
},
"description": "A minimal superset language of GML with TypeScript-like module system",
"files": [
"dist"
],
"keywords": [
"gamemaker",
"gml",
"scaff",
"script",
"superset",
"module",
"cli"
],
"license": "MIT",
"scripts": {
"build": "bun run build:all",
"build:node": "bun build src/index-node.ts --outfile dist/index.cjs --target node --format cjs",
"build:bun": "bun build src/index-bun.ts --outfile build/index.mjs --target bun --format esm",
"build:all": "bun run build:node && bun run build:bun",
"dev": "bun run src/index-node.ts",
"prepublishOnly": "bun run build",
"prelink": "bun run build"
},
"type": "module"
}