-
Notifications
You must be signed in to change notification settings - Fork 62
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.33 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.33 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
{
"name": "gwm",
"version": "0.6.0",
"description": "generate watermark",
"keywords": [
"watermark",
"canvas",
"svg",
"typescript"
],
"type": "module",
"main": "dist/gwm.umd.js",
"module": "dist/gwm.es.js",
"types": "dist/types/gwm.d.ts",
"files": [
"dist"
],
"author": "LoadChange <soocto@gmail.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/loadchange/gwm.git"
},
"license": "MIT",
"scripts": {
"lint": "eslint src test",
"lint:fix": "eslint src test --fix",
"build": "vite build",
"dev": "vite",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"docs:dev": "npm run build && cp dist/gwm.umd.js docs/public/ && vitepress dev docs",
"docs:build": "npm run build && cp dist/gwm.umd.js docs/public/ && vitepress build docs"
},
"devDependencies": {
"@eslint/js": "^9.35.0",
"@types/jest": "^29.5.14",
"@typescript-eslint/eslint-plugin": "^8.29.1",
"@typescript-eslint/parser": "^8.29.1",
"eslint": "^9.24.0",
"eslint-config-prettier": "^10.1.2",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"ts-jest": "^29.3.1",
"typescript": "^5.8.3",
"typescript-eslint": "^8.29.1",
"vite": "^6.2.6",
"vite-plugin-dts": "^4.5.3",
"vitepress": "^1.6.3"
}
}