-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.96 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.96 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
{
"name": "@jetstreamapp/simple-xml",
"version": "1.1.1",
"description": "A minimal, zero-dependency XML parser and builder for simple use cases",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.mjs",
"types": "dist/types/index.d.ts",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"require": "./dist/cjs/index.js",
"import": "./dist/esm/index.mjs"
}
},
"scripts": {
"clean": "rm -rf ./dist/*",
"prebuild": "npm run clean",
"build": "npm-run-all build:esm build:cjs build:declarations",
"build:esm": "esbuild src/index.ts --bundle --outfile=dist/esm/index.mjs --minify --format=esm --target=es2022 --banner:js='/*! @jetstreamapp/simple-xml | MIT License | https://github.com/jetstreamapp/simple-xml */'",
"build:cjs": "esbuild src/index.ts --bundle --outfile=dist/cjs/index.js --minify --format=cjs --target=es2022 --banner:js='/*! @jetstreamapp/simple-xml | MIT License | https://github.com/jetstreamapp/simple-xml */'",
"build:declarations": "tsc --project tsconfig.json",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"typecheck": "tsc --noEmit -p tsconfig.typecheck.json",
"release": "release-it"
},
"author": "Austin Turner <austin@getjetstream.app>",
"license": "MIT",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"files": [
"dist/**",
"LICENSE.txt",
"README.md",
"CHANGELOG.md"
],
"devDependencies": {
"@release-it/keep-a-changelog": "^7.0.1",
"@types/node": "^25.5.0",
"esbuild": "^0.27.4",
"npm-run-all": "^4.1.5",
"prettier": "^3.8.1",
"release-it": "^19.2.4",
"typescript": "^6.0.2",
"vitest": "^4.1.2"
},
"keywords": [
"xml",
"parser",
"builder",
"soap",
"salesforce",
"simple",
"lightweight"
],
"repository": {
"type": "git",
"url": "git+https://github.com/jetstreamapp/simple-xml.git"
}
}