-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.38 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.38 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
{
"name": "@salable/js",
"version": "5.0.0",
"description": "A set of functions to simplify building Salable applications on the client.",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"type": "module",
"files": [
"dist"
],
"scripts": {
"test": "vitest",
"build": "rollup -c",
"preversion": "npm run build",
"prepare": "husky install",
"semantic-release": "semantic-release"
},
"publishConfig": {
"access": "public"
},
"author": "Salable Team",
"repository": {
"url": "https://github.com/Salable/js"
},
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.5",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"husky": "^8.0.3",
"lint-staged": "^15.1.0",
"prettier": "3.1.0",
"rollup": "^4.5.2",
"semantic-release": "^22.0.8",
"tslib": "^2.6.2",
"typescript": "^5.3.2",
"vitest": "^3.0.5",
"vitest-fetch-mock": "^0.4.3"
},
"lint-staged": {
"*.{js,css,md}": "prettier --write"
}
}