-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.12 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
{
"name": "@square/site-theme-sdk",
"version": "0.0.0-semantic-release",
"type": "module",
"files": [
"lib"
],
"main": "./lib/index.umd.cjs",
"module": "./lib/index.js",
"types": "./lib/index.d.ts",
"exports": {
".": {
"import": "./lib/index.js",
"require": "./lib/index.umd.cjs"
}
},
"scripts": {
"build": "tsc && vite build",
"coverage": "TZ=UTC vitest run --coverage.enabled",
"coverage:ci": "TZ=UTC vitest run --coverage.enabled --coverage.reporter='json-summary'",
"make-coverage-badges": "istanbul-badges-readme",
"make-coverage-badges:ci": "istanbul-badges-readme --ci",
"prepack": "npm run update-version && npm run build",
"prepare": "husky install && npm run build",
"size": "size-limit",
"test": "TZ=UTC vitest",
"typedoc": "typedoc --plugin typedoc-plugin-markdown --readme build/GettingStarted.md --entryDocument GettingStarted.md --disableSources --excludeReferences",
"commit": "node ./bin/buildConventionalCommit.js",
"update-version": "node ./build/update-version.cjs",
"lint": "eslint .",
"lint-fix": "eslint . --fix"
},
"size-limit": [
{
"path": "lib/index.js",
"limit": "16 kB"
},
{
"path": "lib/index.umd.cjs",
"limit": "16 kB"
}
],
"devDependencies": {
"@commitlint/cli": "^17.4.1",
"@commitlint/config-conventional": "^17.4.0",
"@size-limit/preset-small-lib": "^8.1.1",
"@stylistic/eslint-plugin-js": "^2.9.0",
"@typescript-eslint/eslint-plugin": "^6.1.0",
"@typescript-eslint/parser": "^6.1.0",
"@vitest/coverage-v8": "^0.34.1",
"chalk": "^4.1.2",
"conventional-changelog-conventionalcommits": "^5.0.0",
"eslint": "^8.45.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsonc": "^2.9.0",
"husky": "^8.0.3",
"istanbul-badges-readme": "^1.8.5",
"jsdom": "^25.0.1",
"size-limit": "^8.1.1",
"typedoc-plugin-markdown": "^3.16.0",
"typescript": "^4.9.3",
"vite": "^4.5.3",
"vite-plugin-dts": "^1.7.1",
"vitest": "^0.34.1"
},
"volta": {
"node": "20.8.1"
}
}