generated from tweakpane/plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
68 lines (68 loc) · 2.36 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
{
"name": "tweakpane-plugin-file-import",
"version": "1.1.1",
"description": "A general-purpose and simple file input Tweakpane plugin",
"homepage": "https://github.com/LuchoTurtle/tweakpane-plugin-file-import",
"main": "dist/tweakpane-plugin-file-import.js",
"types": "dist/types/index.d.ts",
"author": "LuchoTurtle",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/LuchoTurtle/tweakpane-plugin-file-import"
},
"files": [
"dist"
],
"scripts": {
"release": "release-it",
"prepare": "run-s clean build",
"prepublishOnly": "npm test",
"start": "run-p watch server",
"test": "eslint \"src/**/*.ts\"",
"assets": "run-s clean build assets:version assets:zip",
"assets:version": "node scripts/assets-append-version.js",
"assets:zip": "zip -x '*types*' -j -r $(node scripts/dist-name.js)-$(cat package.json | npx json version).zip dist",
"clean": "rimraf dist *.tgz *.zip",
"build": "run-p build:*",
"build:dev": "rollup --config rollup.config.js",
"build:dts": "tsc --project tsconfig-dts.json",
"build:prod": "rollup --config rollup.config.js --environment BUILD:production",
"format": "run-p format:*",
"format:scss": "prettier --parser scss --write \"src/sass/**/*.scss\"",
"format:ts": "eslint --fix \"src/**/*.ts\"",
"server": "http-server -c-1 -o /test/browser.html",
"watch": "run-p watch:*",
"watch:sass": "onchange --initial --kill \"src/sass/**/*.scss\" -- npm run build:dev",
"watch:ts": "onchange --initial --kill \"src/**/*.ts\" -- rollup --config rollup.config.js"
},
"devDependencies": {
"@rollup/plugin-alias": "^5.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-replace": "^6.0.1",
"@rollup/plugin-typescript": "^12.1.0",
"@tweakpane/core": "^2.0.1",
"@typescript-eslint/eslint-plugin": "^8.5.0",
"@typescript-eslint/parser": "^8.5.0",
"autoprefixer": "^10.2.4",
"eslint": "^9.10.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"http-server": "^14.1.1",
"npm-run-all": "^4.1.5",
"onchange": "^7.1.0",
"postcss": "^8.4.45",
"prettier": "^3.3.3",
"release-it": "^17.6.0",
"rimraf": "^6.0.1",
"rollup": "^2.39.1",
"rollup-plugin-cleanup": "3.2.1",
"rollup-plugin-terser": "^7.0.2",
"sass": "^1.78.0",
"typescript": "^5.6.2"
},
"peerDependencies": {
"tweakpane": "^4.0.0"
}
}