-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.16 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
{
"name": "@shun-shobon/littlexml",
"version": "0.6.2",
"type": "module",
"description": "1kB XML library for Node.js, Bun, Deno, Browser, Edge runtime.",
"repository": {
"type": "git",
"url": "https://github.com/shun-shobon/littlexml.git"
},
"homepage": "https://github.com/shun-shobon/littlexml#readme",
"author": "NISHIZAWA Shuntaro <[email protected]> (https://s2n.tech/)",
"license": "MIT",
"main": "./dist/index.js",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"types": "./dist/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE"
],
"keywords": [
"xml",
"builder",
"utility"
],
"scripts": {
"build": "tsup",
"format": "prettier -w .",
"format:check": "prettier -c .",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"test": "vitest run",
"test:ci": "vitest run --coverage",
"test:watch": "vitest"
},
"devDependencies": {
"@shun-shobon/eslint-config": "^0.13.6",
"@shun-shobon/prettier-config": "^0.4.8",
"@vitest/coverage-v8": "^1.6.0",
"eslint": "^9.14.0",
"prettier": "^3.3.3",
"tsup": "^8.3.5",
"typescript": "^5.6.3",
"vitest": "^1.6.0"
},
"sideEffects": false
}