@scaffscript/core 0.2.0 → 0.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +41 -41
- package/dist/index.cjs +0 -2331
- package/dist/index.d.ts +0 -95
package/package.json
CHANGED
|
@@ -1,41 +1,41 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@scaffscript/core",
|
|
3
|
-
"version": "0.2.
|
|
4
|
-
"repository": {
|
|
5
|
-
"type": "git",
|
|
6
|
-
"url": "https://github.com/undervolta/scaffscript"
|
|
7
|
-
},
|
|
8
|
-
"main": "dist/index.cjs",
|
|
9
|
-
"devDependencies": {
|
|
10
|
-
"@types/bun": "latest"
|
|
11
|
-
},
|
|
12
|
-
"peerDependencies": {
|
|
13
|
-
"typescript": "^5"
|
|
14
|
-
},
|
|
15
|
-
"bin": {
|
|
16
|
-
"scaff": "./dist/index.cjs"
|
|
17
|
-
},
|
|
18
|
-
"description": "A minimal superset language of GML with TypeScript-like module system",
|
|
19
|
-
"files": [
|
|
20
|
-
"dist"
|
|
21
|
-
],
|
|
22
|
-
"keywords": [
|
|
23
|
-
"gamemaker",
|
|
24
|
-
"gml",
|
|
25
|
-
"scaff",
|
|
26
|
-
"script",
|
|
27
|
-
"superset",
|
|
28
|
-
"module",
|
|
29
|
-
"cli"
|
|
30
|
-
],
|
|
31
|
-
"license": "MIT",
|
|
32
|
-
"scripts": {
|
|
33
|
-
"build": "bun run build:all",
|
|
34
|
-
"build:node": "bun build src/index-node.ts --outfile dist/index.cjs --target node --format cjs",
|
|
35
|
-
"build:bun": "bun build src/index-bun.ts --outfile build/index.mjs --target bun --format esm",
|
|
36
|
-
"build:all": "bun run build:node && bun run build:bun",
|
|
37
|
-
"dev": "bun run src/index-node.ts",
|
|
38
|
-
"prelink": "bun run build"
|
|
39
|
-
},
|
|
40
|
-
"type": "module"
|
|
41
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@scaffscript/core",
|
|
3
|
+
"version": "0.2.1",
|
|
4
|
+
"repository": {
|
|
5
|
+
"type": "git",
|
|
6
|
+
"url": "https://github.com/undervolta/scaffscript"
|
|
7
|
+
},
|
|
8
|
+
"main": "dist/index.cjs",
|
|
9
|
+
"devDependencies": {
|
|
10
|
+
"@types/bun": "latest"
|
|
11
|
+
},
|
|
12
|
+
"peerDependencies": {
|
|
13
|
+
"typescript": "^5"
|
|
14
|
+
},
|
|
15
|
+
"bin": {
|
|
16
|
+
"scaff": "./dist/index.cjs"
|
|
17
|
+
},
|
|
18
|
+
"description": "A minimal superset language of GML with TypeScript-like module system",
|
|
19
|
+
"files": [
|
|
20
|
+
"dist"
|
|
21
|
+
],
|
|
22
|
+
"keywords": [
|
|
23
|
+
"gamemaker",
|
|
24
|
+
"gml",
|
|
25
|
+
"scaff",
|
|
26
|
+
"script",
|
|
27
|
+
"superset",
|
|
28
|
+
"module",
|
|
29
|
+
"cli"
|
|
30
|
+
],
|
|
31
|
+
"license": "MIT",
|
|
32
|
+
"scripts": {
|
|
33
|
+
"build": "bun run build:all",
|
|
34
|
+
"build:node": "bun build src/index-node.ts --outfile dist/index.cjs --target node --format cjs",
|
|
35
|
+
"build:bun": "bun build src/index-bun.ts --outfile build/index.mjs --target bun --format esm",
|
|
36
|
+
"build:all": "bun run build:node && bun run build:bun",
|
|
37
|
+
"dev": "bun run src/index-node.ts",
|
|
38
|
+
"prelink": "bun run build"
|
|
39
|
+
},
|
|
40
|
+
"type": "module"
|
|
41
|
+
}
|