generated from qq15725/starter-ts
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (66 loc) · 1.61 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
{
"name": "modern-filters",
"type": "module",
"version": "0.2.4",
"packageManager": "[email protected]",
"description": "Modern filter collection",
"author": "wxm",
"license": "MIT",
"homepage": "https://github.com/qq15725/modern-filters",
"repository": {
"type": "git",
"url": "git+https://github.com/qq15725/modern-filters.git"
},
"bugs": {
"url": "https://github.com/qq15725/modern-filters/issues"
},
"keywords": [
"image",
"filters"
],
"sideEffects": false,
"exports": {
".": {
"types": "./types/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.mjs"
}
},
"main": "dist/index.mjs",
"module": "dist/index.mjs",
"types": "types/index.d.ts",
"browser": "dist/index.js",
"typesVersions": {
"*": {
"*": [
"./types/*",
"./types/index.d.ts"
]
}
},
"files": [
"dist",
"types"
],
"scripts": {
"dev": "vite docs",
"lint": "eslint src",
"test": "vitest --no-threads --no-isolate",
"build": "vite build && tsc --project tsconfig.build.json",
"build:docs": "vite build docs",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md",
"release": "bumpp package.json --commit \"release: v%s\" --push --all --tag"
},
"devDependencies": {
"@qq15725/eslint-config": "^1.1.0",
"@types/node": "^18.14.0",
"@vitejs/plugin-vue": "^4.1.0",
"bumpp": "^8.2.1",
"conventional-changelog-cli": "^2.2.2",
"eslint": "^8.34.0",
"typescript": "^4.9.5",
"vite": "^4.1.2",
"vitest": "^0.28.5",
"vue": "^3.2.47"
}
}