-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.63 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
{
"name": "muigui",
"version": "0.0.21",
"description": "A Simple GUI",
"main": "dist/0.x/muigui.js",
"module": "dist/0.x/muigui.module.js",
"type": "module",
"scripts": {
"build": "npm run build-normal",
"build-ci": "npm run build && node build/prep-for-deploy.js",
"build-normal": "rollup -c",
"build-min": "rollup -c",
"check-ci": "npm run pre-push",
"eslint": "eslint \"**/*.js\"",
"fix": "eslint --fix",
"pre-push": "npm run eslint && npm run build && npm run test",
"start": "node build/serve.js",
"test": "node test/puppeteer.js",
"watch": "npm run start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/greggman/muigui.git"
},
"keywords": [
"muigui",
"gui",
"ui"
],
"author": "Gregg Tavares",
"license": "MIT",
"bugs": {
"url": "https://github.com/greggman/muigui/issues"
},
"files": [
"dist/**/*",
"src/**/*"
],
"homepage": "https://github.com/greggman/muiguiy#readme",
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-terser": "^0.4.0",
"@rollup/plugin-typescript": "^11.1.5",
"@tsconfig/recommended": "^1.0.3",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"chokidar": "^3.5.3",
"eslint": "^8.54.0",
"eslint-plugin-html": "^7.1.0",
"eslint-plugin-one-variable-per-var": "^0.0.3",
"eslint-plugin-optional-comma-spacing": "0.0.4",
"eslint-plugin-require-trailing-comma": "0.0.1",
"puppeteer": "^23.10.4",
"rollup": "^3.20.2",
"servez": "^2.2.4",
"tslib": "^2.6.2",
"typescript": "5.2"
}
}