-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
50 lines (50 loc) · 1.4 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
{
"name": "sepa-js-xml",
"keywords": [
"sepa",
"xml"
],
"version": "3.1.1",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"type": "module",
"repository": {
"url": "git+https://github.com/jerebtw/Sepa-JS-XML.git"
},
"author": "Jerebtw <[email protected]>",
"license": "MIT",
"files": [
"lib/**/*"
],
"scripts": {
"size": "echo index && gzip-size lib/index.js",
"build": "pnpm run types && pnpm run compile",
"compile": "swc ./src/index.ts -o lib/index.js --strip-leading-paths",
"types": "tsc",
"docs": "typedoc src/index.ts --name \"Sepa JS XML\"",
"deploy:docs": "pnpm run docs && gh-pages -d docs",
"format:test": "prettier --check \"src/*.{ts,tsx}\"",
"format:write": "prettier --write \"src/*.{ts,tsx}\"",
"test": "bun test && pnpm run format:test",
"prepare": "pnpm run build",
"prepublishOnly": "pnpm run test && pnpm run deploy:docs",
"preversion": "pnpm run test",
"version": "pnpm run format:write && git add -A src",
"postversion": "git push && git push --tags"
},
"devDependencies": {
"@swc/cli": "^0.4.0",
"@swc/core": "^1.7.35",
"@types/bun": "^1.1.11",
"dayjs": "^1.11.13",
"gh-pages": "^6.1.1",
"gzip-size-cli": "^5.1.0",
"prettier": "^3.3.3",
"typedoc": "^0.26.8",
"typescript": "^5.6.3"
},
"dependencies": {
"ibantools": "^4.5.1",
"xml-js": "^1.6.11"
}
}