This repository was archived by the owner on Jan 16, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.62 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.62 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
62
63
64
65
66
67
68
{
"name": "libxml.wasm",
"version": "1.0.1",
"packageManager": "pnpm@9.1.0",
"type": "module",
"types": "types.d.ts",
"main": "dist/libxml.cjs",
"module": "dist/libxml.mjs",
"exports": {
"./cjs": {
"require": "./dist/libxml.cjs",
"types": "./types.d.ts"
},
"./esm": {
"import": "./dist/libxml.mjs",
"types": "./types.d.ts"
},
".": {
"require": "./dist/libxml.cjs",
"imoport": "./dist/libxml.mjs",
"types": "./types.d.ts"
}
},
"repository": {
"type": "git",
"url": "https://github.com/libxmlwasm/libxml.wasm"
},
"bugs": {
"url": "https://github.com/libxmlwasm/libxml.wasm/issues"
},
"homepage": "https://github.com/libxmlwasm/libxml.wasm#readme",
"license": "MIT",
"keywords": [
"libxml",
"wasm",
"xml",
"parser",
"serializer"
],
"scripts": {
"test": "jest",
"clean": "rimraf -I -g dist prefix cache/build cache/*.gz cache/*.xz wasm-build"
},
"files": [
"dist",
"types.d.ts"
],
"devDependencies": {
"@swc/core": "^1.15.8",
"@types/jest": "^30.0.0",
"@types/node": "^25.0.7",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"cross-env": "^10.1.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^10.1.8",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.6.0",
"jest": "^30.2.0",
"prettier": "^3.7.4",
"rimraf": "^6.1.2",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
}
}