-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.78 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
{
"name": "@cc-heart/utils-client",
"version": "2.1.0",
"description": "A collection of tools 🔧 commonly used by browsers",
"type": "module",
"author": "Carl Chen",
"license": "MIT",
"files": [
"dist",
"assets"
],
"scripts": {
"build": "rm -rf ./dist && rm -rf ./types && tsc -p tsconfig.build.json && rollup -c",
"test": "npx jest",
"prettier": "prettier --write .",
"changelog": "npx conventional-changelog -i NEW_CHANGELOG.md -s -r 0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cc-hearts/utils-client.git"
},
"exports": {
".": [
{
"import": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts",
"require": "./dist/cjs/index.js"
}
],
"./scss/*": "./assets/scss/*",
"./*": "./*"
},
"./package.json": "./package.json",
"keywords": [
"Tools in the browser environment"
],
"devDependencies": {
"@cc-heart/utils": "^5.2.1",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.5",
"@swc/core": "^1.3.100",
"@swc/jest": "^0.2.29",
"@testing-library/dom": "^8.20.1",
"@testing-library/jest-dom": "^5.17.0",
"@types/jest": "^29.5.11",
"@types/testing-library__jest-dom": "^5.14.9",
"commitizen": "^4.3.0",
"conventional-changelog-cli": "^4.1.0",
"cz-conventional-changelog": "^3.3.0",
"esm": "^3.2.25",
"gulp": "^4.0.2",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.1.1",
"rollup": "^3.29.4",
"ts-node": "^10.9.2",
"tslib": "^2.6.2",
"typescript": "^5.4.5"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}