-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.9 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": "lissajous-curve-table",
"version": "1.0.0",
"packageManager": "[email protected]",
"description": "component based on vue3.x",
"author": "peterroe",
"license": "MIT",
"keywords": [
"vue3",
"component",
"vite"
],
"homepage": "https://github.com/peterroe/un#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/peterroe/un.git"
},
"bugs": "https://github.com/peterroe/un/issues",
"main": "./dist/index.umd.js",
"module": "./dist/index.es.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.umd.js",
"import": "./dist/index.es.js",
"types": "./dist/index.d.ts"
},
"./*": "./*"
},
"scripts": {
"dev": "vite --config playground/vite.config.ts",
"build": "vite build",
"build:demo": "vite build --config playground/vite.config.ts",
"preview": "pnpm build:demo && vite preview --config playground/vite.config.ts",
"deploy": "pnpm build:demo && gh-pages -d playground/dist",
"lint": "eslint \"**/*.{vue,ts,js}\"",
"fix": "eslint --fix \"**/*.{vue,ts,js}\"",
"release": "pnpm build && bumpp && npm publish",
"test": "vitest",
"typecheck": "vue-tsc --noEmit",
"git-hook-init": "git init && husky install && husky add .husky/pre-commit 'npm run lint && npm run typecheck'"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"devDependencies": {
"@antfu/eslint-config": "0.35.3",
"@types/node": "^18.18.9",
"@vitejs/plugin-vue": "3.2.0",
"@vue/test-utils": "2.4.1",
"bumpp": "8.2.1",
"eslint": "8.53.0",
"gh-pages": "5.0.0",
"happy-dom": "8.9.0",
"husky": "8.0.3",
"taze": "^0.9.2",
"typescript": "5.2.2",
"unocss": "^0.57.3",
"vite": "4.5.0",
"vite-plugin-dts": "2.3.0",
"vitest": "0.28.5",
"vue-tsc": "1.8.22"
},
"dependencies": {
"gsap": "^3.12.2",
"vue": "3.3.8"
}
}