-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (40 loc) · 1.14 KB
/
package.json
File metadata and controls
42 lines (40 loc) · 1.14 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": "@petii/script-ts",
"version": "0.2.0",
"description": "The typescript counterpart to the trusty old `<script>` element.",
"keywords": [],
"homepage": "https://github.com/petii/script-ts#readme",
"bugs": {
"url": "https://github.com/petii/script-ts/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/petii/script-ts.git"
},
"license": "MIT",
"author": "petii",
"type": "commonjs",
"main": "script-ts.js",
"directories": {
"example": "examples"
},
"scripts": {
"fmt-cmd": "prettier \"./**/*.(ts|js|html)\"",
"fmt": "npm run fmt-cmd -- -w",
"fmt-check": "npm run fmt -- -c",
"ts-check": "tsc -b --noEmit",
"bundle-cmd": "esbuild script-ts.ts --bundle --platform=browser ",
"full-bundle": "npm run bundle-cmd -- --outfile=script-ts.js",
"min-bundle": "npm run bundle-cmd -- --minify --outfile=script-ts.min.js",
"watch": "npm run full-bundle -- --watch"
},
"dependencies": {
"ts-blank-space": "^0.6.1"
},
"devDependencies": {
"@types/mithril": "^2.2.7",
"esbuild": "0.25.1",
"prettier": "^3.5.3",
"typescript": "^5.8.2"
}
}