-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.35 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.35 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
{
"name": "typesxml",
"productName": "TypesXML",
"version": "1.18.0",
"description": "Open source XML library written in TypeScript",
"keywords": [
"XML",
"Parser",
"DOM",
"SAX",
"DTD",
"Default attributes",
"TypeScript",
"JSON"
],
"scripts": {
"build": "npm run build:cjs && npm run build:esm",
"build:cjs": "tsc --project tsconfig.cjs.json",
"build:esm": "tsc --project tsconfig.esm.json && node scripts/create-esm-package.cjs",
"testDtd": "npm run build:cjs && node dist/cjs/tests/DTDTestSuite.js",
"testJson": "npm run build:cjs && node dist/cjs/tests/JsonConversionTest.js"
},
"author": {
"name": "Rodolfo M. Raya",
"url": "https://maxprograms.com",
"email": "rmraya@maxprograms.com"
},
"license": "EPL-1.0",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts",
"exports": {
".": {
"types": "./dist/esm/index.d.ts",
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js",
"default": "./dist/esm/index.js"
},
"./package.json": "./package.json",
"./cjs/*": "./dist/cjs/*"
},
"files": [
"/dist"
],
"repository": {
"type": "git",
"url": "https://github.com/rmraya/TypesXML.git"
},
"devDependencies": {
"@types/node": "^24.12.0",
"typescript": "^6.0.2"
}
}