-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.39 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.39 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
{
"name": "@violentmonkey/xml-parser",
"version": "1.0.1",
"description": "Lightweight XML to JSON parser, zero dependencies, for browser, Node.js, and Deno",
"license": "MIT",
"author": "Gerald <gera2ld@live.com>",
"repository": "git@github.com:violentmonkey/xml-parser.git",
"files": [
"dist"
],
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "vite build",
"dev": "vite build --watch",
"test": "vitest run",
"ci": "pnpm test",
"lint": "oxlint",
"format": "oxfmt --write",
"check": "tsc --noEmit && pnpm lint && pnpm format",
"prepare": "husky",
"prepublishOnly": "pnpm build && pnpm test"
},
"devDependencies": {
"@types/node": "^26.1.1",
"@typescript/typescript6": "^6.0.2",
"husky": "^9.1.7",
"lint-staged": "^17.2.0",
"oxfmt": "^0.60.0",
"oxlint": "^1.75.0",
"typescript": "^7.0.0",
"vite": "^8.1.5",
"vite-plugin-dts": "^5.0.3",
"vitest": "^4.1.10"
},
"lint-staged": {
"*.{js,ts,tsx,mjs,cjs,vue,svelte}": [
"oxlint --fix",
"oxfmt --write"
],
"*.{css,json,jsonc,yaml,yml,md,mdx,html,graphql}": "oxfmt --write"
}
}