-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.68 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.68 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
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
72
73
74
75
{
"name": "@arijs/tweakpane-plugin-tree",
"version": "0.0.0",
"description": "A tree input plugin for Tweakpane",
"main": "dist/tweakpane-plugin-tree.js",
"type": "module",
"types": "dist/types/index.d.ts",
"homepage": "https://github.com/arijs/tweakpane-tree",
"repository": {
"type": "git",
"url": "https://github.com/arijs/tweakpane-tree.git"
},
"author": "rhengles",
"license": "MIT",
"files": [
"dist"
],
"scripts": {
"prepare": "run-s clean build",
"prepublishOnly": "npm run lint",
"start": "vite --open /test/browser.html",
"dev": "vite",
"test_rem": "eslint --ext .ts \"**/*.ts\" && eslint --ext .js \"**/*.js\"",
"lint": "eslint",
"test-vitest": "vitest",
"test": "ts-node test/visual-test.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 --glob dist *.tgz *.zip",
"build": "npm-run-all --parallel build:dev build:prod --sequential build:dts",
"build:dev": "vite build --mode development",
"build:dts": "tsc --project src/tsconfig-dts.json",
"build:prod": "vite build --mode production",
"format": "run-p format:*",
"format:scss": "prettier --parser scss --write \"src/sass/**/*.scss\"",
"format_rem:ts": "eslint --ext .ts --fix \"**/*.ts\"",
"format_rem:js": "eslint --ext .js --fix \"**/*.js\"",
"format:code": "eslint --fix",
"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,js}\" -- vite build --watch"
},
"devDependencies": {
"@arijs/tweakpane-core": "^2.0.6-fix.1",
"@testing-library/dom": "^10.4.1",
"@types/node": "^24.10.0",
"@typescript-eslint/eslint-plugin": "^8.46.2",
"@typescript-eslint/parser": "^8.46.2",
"@vitest/browser-playwright": "^4.0.6",
"autoprefixer": "^10.4.21",
"eslint": "^9.39.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-simple-import-sort": "^12.1.1",
"http-server": "^14.1.1",
"looks-same": "^10.0.1",
"npm-run-all": "^4.1.5",
"onchange": "^7.1.0",
"postcss": "^8.5.6",
"prettier": "^3.6.2",
"puppeteer": "^24.28.0",
"rimraf": "^6.1.0",
"sass": "^1.93.3",
"ts-node": "^10.9.2",
"tslib": "^2.8.1",
"typescript": "^5.9.3",
"vite": "^7.1.12",
"vitest": "^4.0.6"
},
"peerDependencies": {
"@arijs/tweakpane": "^4.0.6-fix.1"
}
}