forked from Simon-He95/git-fork-vue
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.94 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 1.94 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
{
"name": "@simon_he/git-fork",
"version": "0.1.0",
"packageManager": "pnpm@6.32.3",
"description": "git-fork",
"author": "Simon He",
"license": "MIT",
"repository": {
"type": "git",
"url": "git + git@github.com:Simon-He95/git-fork.git"
},
"bugs": {
"url": "https://github.com/Simon-He95/git-fork/issues"
},
"keywords": [
"git-fork",
"vue"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.umd.js",
"import": "./dist/index.mjs"
}
},
"main": "./dist/index.umd.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "vite build",
"dev": "pkgroll --watch",
"play": "pnpm run -C playground dev",
"play:build": "pnpm run -C playground build",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"typecheck": "vue-tsc --noEmit",
"test": "vitest --dir test -u",
"ptest": "pnpm run -C playground test -u",
"preview": "pnpm run -C playground preview",
"test:e2e": "cypress open",
"prepublishOnly": "nr build",
"release": "bumpp --commit --tag --push && git push origin --tags -f && npm publish"
},
"dependencies": {
"@vueuse/core": "^8.1.1",
"vue": "^3.2.36"
},
"devDependencies": {
"@antfu/eslint-config": "^0.25.2",
"@simon_he/git-fork": "workspace:^0.0.9",
"@types/node": "^17.0.38",
"@unocss/inspector": "^0.45.21",
"@unocss/vite": "^0.45.21",
"@vitejs/plugin-vue": "^3.0.1",
"@vitejs/plugin-vue-jsx": "^2.0.0",
"bumpp": "^7.1.1",
"eslint": "^8.16.0",
"eslint-plugin-n": "^15.2.1",
"pkgroll": "^1.3.1",
"simon-js-tool": "^4.1.0",
"typescript": "^4.7.2",
"unocss": "^0.29.2",
"vite": "^3.1.3",
"vite-plugin-css-injected-by-js": "^2.1.0",
"vite-plugin-dts": "^1.5.0",
"vite-plugin-inspector-lib-css": "^0.0.2",
"vite-plugin-lib-insert-unocss": "^0.0.1",
"vitest": "^0.13.1"
}
}