-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.62 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
{
"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.5.5",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.11",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"rimraf": "^5.0.7",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
}
}