-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
92 lines (92 loc) · 2.55 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
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
88
89
90
91
92
{
"name": "@strapi/sdk-js",
"version": "1.0.0-beta.0",
"description": "An SDK you can use the easily interface with Strapi from your javascript project",
"keywords": [
"strapi",
"sdk",
"js"
],
"repository": {
"type": "git",
"url": "https://github.com/strapi/sdk-js.git"
},
"license": "SEE LICENSE IN LICENSE",
"author": {
"name": "Strapi Solutions SAS",
"email": "[email protected]",
"url": "https://strapi.io"
},
"maintainers": [
{
"name": "Strapi Solutions SAS",
"email": "[email protected]",
"url": "https://strapi.io"
}
],
"browser": "./dist/bundle.browser.min.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/bundle.cjs.js",
"import": "./dist/bundle.esm.js",
"browser": {
"import": "./dist/bundle.browser.min.js",
"require": "./dist/bundle.browser.min.js"
}
},
"./package.json": "./package.json"
},
"files": [
"./package.json",
"dist/"
],
"scripts": {
"build": "rollup --config rollup.config.mjs --failAfterWarnings",
"build:clean": "pnpm run clean && pnpm run build",
"clean": "pnpm exec rimraf ./dist",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lint:fix:dry": "eslint . --fix-dry-run",
"prepare": "husky",
"prettier:check": "prettier --check .",
"prettier:write": "prettier --write .",
"test": "jest --verbose",
"test:cov": "jest --verbose --coverage",
"ts:check": "tsc -p tsconfig.build.json --noEmit",
"watch": "rollup --config rollup.config.mjs --watch --failAfterWarnings",
"prepack": "pnpm exec ./scripts/pre-pack.sh"
},
"devDependencies": {
"@commitlint/cli": "19.6.1",
"@commitlint/config-conventional": "19.6.0",
"@commitlint/types": "19.5.0",
"@rollup/plugin-commonjs": "28.0.2",
"@rollup/plugin-node-resolve": "16.0.0",
"@rollup/plugin-replace": "6.0.2",
"@rollup/plugin-terser": "0.4.4",
"@rollup/plugin-typescript": "12.1.2",
"@strapi/eslint-config": "0.2.1",
"@types/debug": "4.1.12",
"@types/jest": "29.5.14",
"@typescript-eslint/eslint-plugin": "8.21.0",
"@typescript-eslint/parser": "8.21.0",
"eslint": "8.57.1",
"eslint-plugin-import": "2.31.0",
"husky": "9.1.7",
"jest": "29.7.0",
"lint-staged": "15.4.1",
"prettier": "3.4.2",
"rimraf": "6.0.1",
"rollup": "4.31.0",
"ts-jest": "29.2.5",
"typescript": "5.7.3"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=20.18.2 <=22.x.x"
},
"dependencies": {
"debug": "4.4.0"
}
}