-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.7 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.7 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
{
"name": "wraker-plugin-something",
"version": "1.0.0",
"main": "./dist/plugin.js",
"module": "./dist/plugin.mjs",
"types": "./dist/plugin.d.ts",
"engines": {
"node": ">=18.0.0"
},
"exports": {
".": {
"types": "./dist/plugin.d.ts",
"import": "./dist/plugin.mjs",
"require": "./dist/plugin.js"
}
},
"scripts": {
"build": "rollup -c",
"dev": "vitest --watch --no-coverage --ui",
"dev:coverage": "vitest --watch --coverage --ui",
"test": "vitest --no-watch --no-coverage",
"coverage": "vitest --no-watch --coverage",
"test:coverage": "npm run coverage",
"bump:patch": "npm version patch && git push && git push --tags",
"bump:minor": "npm version minor && git push && git push --tags",
"bump:major": "npm version major && git push && git push --tags",
"release:npm": "npm run build && npm publish",
"docs": "typedoc --out ./docs ./src/index.ts",
"postinstall": "npx playwright install"
},
"type": "module",
"keywords": [
"worker",
"express",
"typescript"
],
"license": "MIT",
"description": "Wraker Plugin for something",
"author": "you <you@example.org>",
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.2",
"@rollup/plugin-node-resolve": "^16.0.0",
"@types/node": "^22.14.1",
"@vitest/browser": "^3.1.2",
"@vitest/coverage-istanbul": "^3.1.2",
"esbuild": "^0.25.2",
"playwright": "^1.52.0",
"rollup": "^4.40.0",
"rollup-plugin-dts": "^6.2.1",
"rollup-plugin-esbuild": "^6.2.1",
"typedoc": "^0.28.3",
"typescript": "^5.8.3",
"vitest": "^3.1.2"
},
"directories": {
"doc": "docs"
},
"dependencies": {
"@wraker/core": "file:../core"
}
}