-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.24 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 2.24 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
{
"name": "@acrool/js-utils",
"version": "0.0.0",
"type": "module",
"license": "MIT",
"packageManager": "yarn@4.9.1",
"repository": {
"type": "git",
"url": "git+https://github.com/acrool/acrool-js-utils.git"
},
"engines": {
"node": ">=14"
},
"scripts": {
"dev": "vite build -w",
"build:claer": "rm -rf ./dist",
"build:post": "ts-node ./build-post-processors.js",
"prepublishOnly": "run-s build",
"build": "run-s build:claer && tsc && vite build && run-s build:post",
"preview": "vite preview",
"lint:fix": "eslint ./src --fix",
"cz": "git-cz",
"test": "jest",
"gitlog": "git log --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cblueby %an %Cgreen(%cr)%Creset'",
"release-cli": "standard-version --packageFiles ./src/package.json --bumpFiles ./src/package.json",
"release": "yarn release-cli --release-as",
"release:major": "yarn release-cli -r major && run-s postrelease",
"release:minor": "yarn release-cli -r minor && run-s postrelease",
"release:patch": "yarn release-cli -r patch && run-s postrelease",
"release:alpha": "yarn release-cli --prerelease alpha && run-s postrelease",
"postrelease": "echo # then run '`git push --follow-tags origin main && yarn build && npm publish ./dist --access=public`' to publish"
},
"dependencies": {
"big.js": "^7.0.1",
"dayjs": "^1.x"
},
"devDependencies": {
"@originjs/vite-plugin-commonjs": "1.0.3",
"@types/big.js": "^6.2.2",
"@types/jest": "^29.5.14",
"@types/node": "20.17.32",
"@typescript-eslint/eslint-plugin": "^8.23.0",
"@typescript-eslint/parser": "^8.23.0",
"cz-conventional-changelog": "3.3.0",
"cz-customizable": "6.6.0",
"cz-git": "^1.11.1",
"eslint": "^9.19.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.7.0",
"npm-run-all": "^4.1.5",
"rollup-plugin-visualizer": "^5.9.0",
"standard-version": "^9.5.0",
"ts-jest": "^29.3.2",
"ts-node": "10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.8.3",
"vite": "^6.3.5",
"vite-plugin-dts": "^2.1.0",
"vite-plugin-eslint": "^1.8.1"
},
"config": {
"commitizen": {
"path": "node_modules/cz-git"
}
}
}