-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.04 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.04 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
43
44
45
46
{
"name": "@scratch-fuse/core",
"version": "1.0.0",
"description": "The core of fuse language",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "tsup src/index.ts --watch",
"lint:type": "tsc --noEmit",
"build": "tsup src/index.ts",
"format": "prettier --write ."
},
"author": "FurryR",
"license": "MPL-2.0",
"dependencies": {
"@scratch-fuse/utility": "github:scratch-fuse/utility#build"
},
"devDependencies": {
"@types/node": "^24.5.2",
"prettier": "^3.6.2",
"tsup": "^8.5.0",
"typescript": "^5.9.2"
},
"homepage": "https://github.com/scratch-fuse/core#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/scratch-fuse/core.git"
},
"bugs": {
"url": "https://github.com/scratch-fuse/core/issues"
},
"keywords": [
"scratch",
"blocks",
"parser",
"script",
"fuse"
],
"files": [
"dist",
"LICENSE",
"README.md"
]
}