-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.11 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.11 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
{
"name": "@loyaltylion/headless-api-client",
"version": "0.0.7",
"description": "Lightweight JS client to interact with the LoyaltyLion Headless API",
"author": "LoyaltyLion",
"license": "MIT",
"main": "dist/headless-api-client.cjs.js",
"module": "dist/headless-api-client.esm.js",
"types": "dist/headless-api-client.d.ts",
"scripts": {
"build": "rimraf ./dist && rollup --configPlugin @rollup/plugin-typescript -c",
"dev": "rimraf ./dist && rollup --configPlugin @rollup/plugin-typescript -c -w",
"npm:publish": "npm run build && npm publish --access=public"
},
"repository": {
"type": "git",
"url": "https://github.com/loyaltylion/typescript-headless-api-client.git"
},
"devDependencies": {
"@biomejs/biome": "^2.0.6",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.4",
"rimraf": "^6.0.1",
"rollup": "^4.44.1",
"rollup-plugin-dts": "^6.2.1",
"typescript": "^5.8.3"
},
"dependencies": {
"openapi-fetch": "^0.14.0",
"tslib": "^2.8.1"
}
}