-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
117 lines (117 loc) · 3.64 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "v-tweakpane",
"version": "0.3.2",
"description": "Tweakpane for Vue",
"main": "./dist/v-tweakpane.js",
"module": "./dist/v-tweakpane.js",
"umd": "./dist/v-tweakpane.umd.cjs",
"unpkg": "./dist/v-tweakpane.cjs",
"jsdelivr": "./dist/v-tweakpane.cjs",
"cdn": "./dist/v-tweakpane.min.js",
"exports": {
".": {
"import": "./dist/v-tweakpane.js",
"require": "./dist/v-tweakpane.umd.cjs"
},
"./dist/v-tweakpane.css": {
"import": "./dist/v-tweakpane.css",
"require": "./dist/v-tweakpane.css"
}
},
"files": [
"dist"
],
"types": "./dist/index.d.ts",
"type": "module",
"scripts": {
"build": "vite build && vue-tsc --declaration --emitDeclarationOnly && prettier --write dist/*{cjs,js,ts}",
"test": "echo 'Add Tests'",
"lint": "bun run lint:prettier && bun run lint:eslint && bun run lint:css",
"lintfix": "bun run lint:prettier:fix && bun run lint:eslint:fix && bun run lint:css:fix",
"lint:js": "bun run lint:eslint && bun run lint:prettier",
"lint:eslint": "eslint \"{,!(node_modules|dist)/**/}*.{js,ts,vue}\"",
"lint:eslint:fix": "eslint --fix \"{,!(node_modules|dist)/**/}*.{js,ts,vue}\"",
"lint:prettier": "prettier --check \"{,!(node_modules|dist)/**/}*.{js,ts,vue}\"",
"lint:prettier:fix": "prettier --write \"{,!(node_modules|dist)/**/}*.{js,ts,vue}\"",
"lint:css": "stylelint \"{,!(node_modules|dist)/**/}*.{css,scss,vue}\"",
"lint:css:fix": "stylelint --fix \"{,!(node_modules|dist)/**/}*.{css,scss,vue}\"",
"prepare": "husky install",
"release": "shipjs prepare",
"release:dry": "shipjs prepare --dry-run",
"release:auto": "shipjs prepare --yes"
},
"dependencies": {
"@tweakpane/plugin-essentials": "^0.2.1",
"tweakpane": "^4.0.4"
},
"peerDependencies": {
"tweakpane": "^4.0.4",
"@tweakpane/plugin-essentials": "^0.2.1",
"vue": "^3.4.7"
},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@tweakpane/core": "^2.0.5",
"@types/node": "^22.10.2",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^7.17.0",
"@typescript-eslint/parser": "^7.18.0",
"@vinayakkulkarni/prettier-config-vue": "^1.0.0",
"@vitejs/plugin-vue": "^5.2.1",
"@vue/runtime-dom": "^3.5.13",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jsdoc": "^50.6.1",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-security": "^1.7.1",
"eslint-plugin-storybook": "^0.11.1",
"eslint-plugin-vue": "^9.32.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.11",
"postcss-html": "^1.7.0",
"prettier": "^3.4.2",
"sass": "^1.83.0",
"shipjs": "^0.27.0",
"stylelint": "16.12.0",
"stylelint-config-recommended-vue": "^1.5.0",
"stylelint-prettier": "5.0.2",
"typescript": "^5.7.2",
"uuid": "^11.0.3",
"vite": "^6.0.6",
"vue": "^3.5.13",
"vue-tsc": "^2.2.0"
},
"keywords": [
"tweakpane",
"Vue tweakpane",
"v-tweakpane",
"vue-tweakpane.js"
],
"author": {
"name": "Vinayak Kulkarni",
"email": "inbox.vinayak@gmail.com",
"url": "https://vinayakkulkarni.dev"
},
"license": "MIT",
"engines": {
"node": ">=16.0.0",
"npm": ">=8.19.2"
},
"private": false,
"sideEffects": [
"*.css"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"repository": {
"url": "git+https://github.com/vinayakkulkarni/v-tweakpane.git",
"type": "git"
},
"bugs": {
"url": "https://github.com/vinayakkulkarni/v-tweakpane/issues"
},
"homepage": "https://github.com/vinayakkulkarni/v-tweakpane#readme"
}