-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 911 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 911 Bytes
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
{
"name": "@arijs/stream-xml-parser",
"version": "0.2.24",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/arijs/stream-xml-parser.git"
},
"main": "dist/arijs-stream-xml-parser.esm.js",
"module": "dist/arijs-stream-xml-parser.esm.js",
"REM_exports": {
"comment": "This export map was causing build errors in Vite >=8.0.8 <=8.0.12, in combination with pnpm v10.32.1 and Node v20.20.1 (in base npm v11.6.2 it works), so it has been removed. The main and module fields now point directly to the ESM build.",
".": "./dist/arijs-stream-xml-parser.esm.js"
},
"scripts": {
"build": "vite build",
"watch": "vite build --watch",
"test": "node scripts/test.mjs",
"test:legacy": "node test/test.js"
},
"files": [
"dist",
"src"
],
"devDependencies": {
"terser": "^5.39.0",
"vite": "^8.0.12"
},
"dependencies": {
"css-selector-parser": "^3.3.0"
}
}