-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.58 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
{
"name": "@cmath10/jmask",
"version": "0.2.4",
"description": "Pure JavaScript mask",
"license": "MIT",
"author": "[email protected]",
"main": "dist/jmask.cjs",
"module": "dist/jmask.mjs",
"types": "dist/jmask.d.ts",
"engines": {
"node": ">=18"
},
"scripts": {
"build": "vite build",
"lint": "eslint src/** tests/**",
"lint:fix": "eslint --fix src/** tests/**",
"release": "standard-version",
"release:minor": "standard-version --release-as minor",
"release:patch": "standard-version --release-as patch",
"release:major": "standard-version --release-as major",
"sandbox:serve": "cd ./sandbox && vite --host",
"test": "vitest run"
},
"keywords": [
"mask"
],
"browserslist": [
"> 1%",
"last 2 versions"
],
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@eslint/js": "^9.3.0",
"@stylistic/eslint-plugin": "^2.1.0",
"@types/node": "^20.12.12",
"eslint": "^8.57.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^17.7.0",
"eslint-plugin-vue": "^9.26.0",
"globals": "^15.3.0",
"standard-version": "^9.5.0",
"typescript": "^5.4.5",
"typescript-eslint": "^7.10.0",
"vite": "^5.2.11",
"vite-plugin-dts": "^3.9.1",
"vitest": "^1.6.0"
},
"homepage": "https://github.com/cmath10/jmask#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/cmath10/jmask.git"
},
"bugs": {
"url": "https://github.com/cmath10/jmask/issues"
},
"publishConfig": {
"access": "public"
}
}