-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.49 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.49 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "@code.store/arcxp-sdk-ts",
"version": "5.6.0",
"description": "A strongly typed set of ArcXP API's and utilities reduce the amount of work required to develop with ArcXP, starting with reducing the boilerplate code you have to write.",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"publishConfig": {
"access": "public",
"provenance": true
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"engines": {
"node": ">=22.x",
"pnpm": ">=10.x"
},
"repository": {
"url": "git+https://github.com/code-store-platform/arcxp-sdk-ts.git"
},
"homepage": "https://github.com/code-store-platform/arcxp-sdk-ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc --noEmit && rollup -c",
"format": "npx @biomejs/biome format --write .",
"check": "npx @biomejs/biome check --write .",
"lint": "tsc --noEmit && npx @biomejs/biome lint --write --unsafe .",
"test": "npx vitest",
"coverage": "npx vitest run --coverage",
"gen:ts": "npx tsx ./src/scripts/json-schema-to-ts.ts",
"cs": "npx changeset version"
},
"keywords": [
"ArcXP",
"SDK",
"Code.Store"
],
"author": "code.store",
"license": "MIT",
"dependencies": {
"axios": "^1.4.0",
"axios-rate-limit": "^1.3.0",
"axios-retry": "^4.5.0",
"base32-encode": "^1.2.0",
"form-data": "^4.0.0",
"html-entities": "^2.5.2",
"node-html-parser": "^7.0.1",
"uuid": "^9.0.1",
"ws": "^8.14.0",
"xmldoc": "^2.0.3"
},
"devDependencies": {
"@biomejs/biome": "^2.3.13",
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.2",
"@rollup/plugin-alias": "^5.1.1",
"@rollup/plugin-commonjs": "^28.0.6",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.2",
"@rollup/plugin-replace": "^6.0.2",
"@rollup/plugin-typescript": "^12.1.4",
"@types/node": "^22.0.0",
"@types/uuid": "^9.0.0",
"@types/ws": "^8.5.5",
"@vitest/coverage-v8": "^3.0.9",
"json-schema-to-typescript": "13.1.1",
"nock": "^14.0.10",
"openapi-typescript": "^6.2.7",
"rollup": "^4.52.4",
"rollup-plugin-auto-external": "^2.0.0",
"rollup-plugin-node-polyfills": "^0.2.1",
"rollup-plugin-polyfill-node": "^0.13.0",
"rollup-plugin-terser": "^7.0.2",
"tap": "^16.3.4",
"tslib": "^2.8.1",
"typescript": "^5.3.3",
"vite": "^7.1.4",
"vitest": "^3.2.4"
}
}