-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 4.22 KB
/
Copy pathpackage.json
File metadata and controls
108 lines (108 loc) · 4.22 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
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "bbob",
"scripts": {
"prepublishOnly": "npm run test",
"bootstrap": "pnpm re",
"publish-ci": "npm run build && lerna publish from-package --yes --include-merged-tags --conventional-commits",
"publish-canary": "npm run build && lerna publish --yes --include-merged-tags --conventional-commits --no-private --no-git-tag-version",
"publish-from-packages": "npm run build && lerna publish from-package --yes --include-merged-tags --conventional-commits --create-release github",
"publish-all": "npm run build && lerna publish --include-merged-tags --conventional-commits --create-release github --skip-npm",
"publish-patch": "npm run build && lerna version patch --include-merged-tags --conventional-commits --no-git-tag-version --no-private",
"publish-minor": "npm run build && lerna version minor --include-merged-tags --conventional-commits --no-git-tag-version --no-private",
"size": "nx run-many --target=size",
"bundlesize": "nx run-many --target=bundlesize",
"test": "nx run-many --target=test",
"cover": "nx run-many --target=cover",
"build": "nx run-many --target=build",
"types": "nx run-many --target=types",
"attw": "nx run-many --target=attw",
"release": "npm run build && npm run types && npm run attw && npx changeset publish",
"lint": "nx run-many --target=lint",
"cleanup": "node scripts/cleanup"
},
"author": {
"name": "Nikolay Kostyurin <jilizart@gmail.com>"
},
"license": "MIT",
"devDependencies": {
"@arethetypeswrong/cli": "0.18.5",
"@bbob/scripts": "file:scripts",
"@changesets/changelog-github": "0.7.0",
"@changesets/cli": "2.31.1",
"@commitlint/cli": "21.2.0",
"@commitlint/config-conventional": "21.2.0",
"@nx/eslint": "23.0.1",
"@nx/jest": "23.0.1",
"@nx/rollup": "23.0.1",
"@rollup/plugin-commonjs": "29.0.3",
"@rollup/plugin-node-resolve": "16.0.3",
"@rollup/plugin-replace": "6.0.3",
"@size-limit/preset-small-lib": "12.1.0",
"@swc/cli": "0.8.1",
"@swc/core": "1.15.43",
"@swc/jest": "0.2.39",
"@testing-library/dom": "10.4.1",
"@testing-library/jest-dom": "6.1.2",
"@types/jest": "30.0.0",
"@types/node": "26.1.0",
"@types/react": "19.2.17",
"bundlesize2": "0.0.31",
"cross-env": "10.1.0",
"eslint": "10.6.0",
"eslint-config-airbnb": "19.0.4",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-jest": "29.15.4",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "7.1.1",
"globals": "17.7.0",
"husky": "9.1.7",
"jest": "30.4.2",
"jest-environment-jsdom": "30.4.1",
"lint-staged": "17.0.8",
"microtime": "3.0.0",
"nx": "23.0.1",
"posthtml-render": "3.0.0",
"rimraf": "6.1.3",
"rollup": "4.62.2",
"rollup-plugin-gzip": "4.2.0",
"rollup-plugin-swc3": "0.12.1",
"size-limit": "12.1.0",
"ts-jest-resolver": "2.0.1",
"ts2mjs": "4.0.0",
"typescript": "6.0.3"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/",
"provenance": true
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"pkgTasks": {
"build:commonjs": "@/cross-env BABEL_ENV=commonjs NODE_ENV=production @/swc ./src/ --config-file ../../.swcrc-commonjs.json --out-dir lib --strip-leading-paths",
"build:es": "@/cross-env BABEL_ENV=es NODE_ENV=production @/swc ./src/ --config-file ../../.swcrc.json --out-dir es --strip-leading-paths && @/ts2mjs es --remove-source",
"build:umd": "@/cross-env BABEL_ENV=rollup NODE_ENV=production @/rollup --config ../../rollup.config.mjs",
"build": "npm run build:es && npm run build:commonjs && npm run build:umd",
"test": "@/jest",
"cover": "@/jest --coverage .",
"lint": "@/eslint .",
"types": "@/tsc && @/ts2mjs types",
"attw": "@/attw --pack . --profile node16 --ignore-rules false-export-default",
"bundlesize": "npm run build && @/cross-env NODE_ENV=production @/bundlesize .",
"size": "npm run build && @/cross-env NODE_ENV=production @/size-limit ."
},
"packageManager": "pnpm@11.9.0",
"workspaces": [
"packages/*",
"examples/*",
"scripts",
"benchmark"
],
"nx": {
"includedScripts": []
}
}