-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.96 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "@spcsp/scripts-plus",
"version": "0.1.0",
"private": false,
"keywords": [
"ScriptsPlus",
"Plugin",
"Scripts",
"StrokesPlus",
"StrokesPlus.net"
],
"homepage": "https://github.com/spcsp/scripts-plus",
"license": "MIT",
"author": {
"name": "Kevin Hill",
"email": "kevinkhill@gmail.com",
"website": "https://kevinhill.codes"
},
"main": "./dist/scripts-plus.js",
"bin": {
"splus": "./tools/spe.js"
},
"scripts": {
"build": "webpack --progress",
"dev": "webpack --progress --watch",
"docs": "parcel",
"dts:dev": "cd ./tools/DtsGenerator && nodemon DtsGenerator.js",
"dts:make": "cd ./tools/DtsGenerator && node DtsGenerator.js",
"fix": "yarn lint --fix",
"hello": "node tools/say_hello.js",
"json:dev": "cd ./tools/JsonGenerator && nodemon JsonGenerator.js",
"json:make": "cd ./tools/JsonGenerator && node JsonGenerator.js",
"lint": "eslint --ext=.js ./src ./tools",
"reload-sp": "node tools/reload_sp.js"
},
"dependencies": {
"json-stringify-safe": "^5.0.1"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/eslint-parser": "^7.12.1",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/preset-env": "^7.12.11",
"@mdi/font": "^5.9.55",
"@vue/component-compiler-utils": "^3.2.0",
"babel-loader": "^8.2.2",
"chalk": "^2.4.2",
"chokidar": "^3.5.1",
"enquirer": "^2.3.6",
"eslint": "^7.19.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-prettier": "^3.3.1",
"execa": "^5.0.0",
"express": "^4.17.1",
"nodemon": "^2.0.7",
"parcel-bundler": "^1.12.4",
"parse-json": "^5.2.0",
"prettier": "^2.2.1",
"sass": "^1.32.7",
"vue": "^2.6.12",
"vue-hot-reload-api": "^2.3.4",
"vue-material": "^1.0.0-beta-15",
"vue-template-compiler": "^2.6.12",
"vuetify": "^2.4.4",
"webpack": "^5.19.0",
"webpack-cli": "^4.4.0"
},
"publishConfig": {
"access": "public"
}
}