-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.83 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.83 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
{
"name": "@pacely/poweroffice-node",
"description": "API Client for PowerOffice Go. Supports API v2",
"version": "1.0.1",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/pacely-ai/poweroffice-node.git"
},
"keywords": [
"Pacely, PowerOffice, API, Client, Node.js"
],
"author": "Prek AS <chris@prek.no>",
"license": "MIT",
"scripts": {
"build": "pnpm openapi:generate && tsup",
"openapi:clean": "rimraf src/openapi",
"openapi:clean:v1": "rimraf src/v1/openapi",
"openapi:clean:v2": "rimraf src/v2/openapi",
"openapi:generate:v1": "tsx scripts/generate/v1.mjs",
"openapi:generate:v2": "tsx scripts/generate/v2.mjs",
"changeset": "changeset",
"changeset:version": "changeset version",
"changeset:publish": "pnpm build && changeset publish",
"release": "pnpm build && changeset publish",
"test": "jest"
},
"devDependencies": {
"@athlera/openapi-typescript-codegen": "^0.29.3",
"@changesets/cli": "^2.27.10",
"@types/jest": "^29.5.14",
"@types/lodash": "^4.17.13",
"@types/node": "^22.13.10",
"fs": "0.0.1-security",
"jest": "^29.7.0",
"node-fetch": "^3.3.2",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tsup": "^8.3.5",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
},
"dependencies": {
"dotenv": "^16.4.7"
}
}