-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.52 KB
/
package.json
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
47
48
49
50
51
52
{
"name": "script-custom-module",
"version": "2.2.0",
"description": "A plugin written by Typescript to let developer compile ts,react,vue content in client side with native es module. No bundler, just with one CDN and 4 lines configuration, and you are ready to use your favorite ES javascript to prototype your new idea.",
"main": "dist/custom-script.global.js",
"module": "dist/custom-script.global.js",
"author": "johnnywang",
"bin": {
"create-scm": "scripts/create.js",
"serve-scm": "scripts/serve.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/johnnywang1994/script-custom-module.git"
},
"bugs": {
"url": "https://github.com/johnnywang1994/script-custom-module/issues"
},
"homepage": "https://github.com/johnnywang1994/script-custom-module#readme",
"types": "dist/custom-script.d.ts",
"keywords": [
"npm",
"script module",
"esmodule",
"vue",
"react",
"sass"
],
"license": "MIT",
"scripts": {
"dev": "tsup --watch",
"build": "tsup --minify",
"ci": "yarn install --immutable --immutable-cache --check-cache"
},
"dependencies": {
"@types/finalhandler": "^1.2.0",
"@types/minimist": "^1.2.2",
"@types/node": "^20.5.9",
"@types/serve-static": "^1.15.2",
"@vue/compiler-sfc": "^3.3.4",
"copy-template-dir": "^1.4.0",
"finalhandler": "^1.2.0",
"minimist": "^1.2.8",
"ora": "^7.0.1",
"serve-static": "^1.15.0",
"tsup": "^6.6.3",
"typescript": "^4.9.5"
},
"engines": {
"node": "^16"
}
}