-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.54 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.54 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
{
"name": "@teaghy/vtree",
"private": false,
"version": "1.1.6",
"type": "module",
"files": [
"dist"
],
"main": "./dist/virtual-tree.umd.cjs",
"module": "./dist/virtual-tree.js",
"exports": {
".": {
"import": "./dist/virtual-tree.js",
"require": "./dist/virtual-tree.umd.cjs"
},
"./style.css": "./dist/style.css",
"./*": "./*"
},
"scripts": {
"dev": "vite",
"build": "run-p type-check build-only",
"preview": "vite preview --port 4173",
"build-only": "vite build",
"type-check": "vue-tsc --noEmit",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"build:publish": "npm run build && npm exec terser -- -c -m --module dist/virtual-tree.js > dist/virtual-tree.min.js",
"publish:npm": "npm run build && npm publish"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.1.0",
"@types/node": "^16.18.4",
"@vitejs/plugin-legacy": "^2.0.0",
"@vitejs/plugin-vue2": "^1.1.2",
"@vitejs/plugin-vue2-jsx": "^1.0.2",
"@vue/eslint-config-prettier": "^7.0.0",
"@vue/eslint-config-typescript": "^11.0.0",
"@vue/tsconfig": "^0.1.3",
"eslint": "^8.5.0",
"eslint-plugin-vue": "^9.0.0",
"less": "^4.1.3",
"npm-run-all": "^4.1.5",
"path": "^0.12.7",
"prettier": "^2.5.1",
"terser": "^5.16.0",
"typescript": "~4.7.4",
"vite": "^3.2.0",
"vue": "^2.7.7",
"vue-tsc": "^0.38.8"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
}
}