-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·70 lines (70 loc) · 1.97 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
69
70
{
"name": "@thednp/dommatrix",
"version": "2.0.11",
"description": "TypeScript shim for DOMMatrix",
"homepage": "https://thednp.github.io/dommatrix/",
"author": "thednp",
"license": "MIT",
"source": "./src/index.ts",
"main": "./dist/dommatrix.js",
"module": "./dist/dommatrix.mjs",
"exports": {
".": {
"types": "./dist/dommatrix.d.ts",
"require": "./dist/dommatrix.cjs",
"import": "./dist/dommatrix.mjs"
}
},
"scripts": {
"pre-test": "pnpm clean-coverage",
"test": "pnpm pre-test && vitest --config vitest.config.mts",
"test-ui": "pnpm pre-test && vitest --config vitest.config-ui.mts --browser=chromium",
"clean-coverage": "rm -rf coverage .nyc_output",
"badges": "npx -p dependency-version-badge update-badge typescript vitest vite",
"format": "deno fmt src",
"lint": "pnpm lint:ts && pnpm check:ts",
"lint:ts": "deno lint src",
"check:ts": "tsc --noEmit",
"fix:ts": "deno lint src --fix",
"build": "vite build && pnpm copy-docs",
"copy-docs": "cp dist/dommatrix.js docs/dommatrix.js && cp dist/dommatrix.js.map docs/dommatrix.js.map",
"prepublishOnly": "pnpm up && pnpm format && pnpm lint && pnpm build && pnpm badges"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thednp/dommatrix.git"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"keywords": [
"dommatrix",
"cssmatrix",
"shim",
"polyfill",
"nodejs",
"dom",
"css",
"transform",
"typescript"
],
"bugs": {
"url": "https://github.com/thednp/dommatrix/issues"
},
"devDependencies": {
"@vitest/browser": "^2.1.8",
"@vitest/coverage-istanbul": "^2.1.8",
"@vitest/ui": "^2.1.8",
"playwright": "^1.49.1",
"typescript": "^5.7.2",
"vite": "^5.4.11",
"vite-plugin-dts": "^4.3.0",
"vitest": "^2.1.8"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=20",
"pnpm": ">=8.6.0"
}
}