-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.87 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.87 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
{
"name": "@banjoanton/utils",
"author": "Anton Ödman <anton.odman@gmail.com>",
"type": "module",
"version": "1.1.15",
"description": "All kinds of dev utils",
"homepage": "https://github.com/banjo/utils#readme",
"private": false,
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/banjo/utils.git"
},
"bugs": "https://github.com/banjo/utils/issues",
"main": "dist/index.esm.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.esm.js"
}
},
"files": [
"dist/*",
"skills/**/*"
],
"license": "MIT",
"scripts": {
"build": "rimraf dist && nr prepareImports && rollup --config",
"dev": "rollup --config --watch",
"prepublishOnly": "nr build",
"test": "vitest run",
"test:dev": "vitest",
"addToGit": "git add ./README.md",
"prepareImports": "tsx --no-cache ./scripts/prepareImports.ts",
"prepareDocs": "tsx --no-cache ./scripts/addDocsToReadme.ts",
"typecheck": "tsc --noEmit",
"format": "npx prettier --write .",
"prepare": "husky install",
"change:add": "changeset add",
"change:version": "changeset version",
"change:publish": "changeset publish"
},
"prettier": "@banjoanton/prettier-config",
"dependencies": {
"current-week-number": "^1.0.7",
"deepmerge": "^4.3.1",
"dot-prop": "^7.2.0",
"fast-deep-equal": "^3.1.3",
"ohash": "^1.1.3",
"scule": "^1.3.0",
"throttle-debounce": "^5.0.0",
"uncrypto": "^0.1.3",
"wildcard-match": "^5.1.2"
},
"devDependencies": {
"@antfu/ni": "^0.19.0",
"@babel/core": "^7.23.2",
"@babel/plugin-transform-typescript": "^7.22.15",
"@babel/types": "^7.23.3",
"@banjoanton/prettier-config": "^0.1.10",
"@changesets/cli": "^2.27.9",
"@rollup/plugin-commonjs": "^29.0.3",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@types/doctrine": "^0.0.9",
"@types/node": "^25.9.2",
"@types/throttle-debounce": "^5.0.0",
"bumpp": "^8.2.1",
"doctrine": "^3.0.0",
"esbuild": "^0.28.0",
"happy-dom": "^8.9.0",
"husky": "^8.0.3",
"pnpm": "^7.29.1",
"prettier": "^3.8.1",
"rimraf": "^5.0.5",
"rollup": "^4.61.1",
"rollup-plugin-dts": "^6.4.1",
"rollup-plugin-esbuild": "^6.2.1",
"tsup": "^8.0.0",
"tsx": "^4.22.4",
"typescript": "^5.2.2",
"vite": "^8.0.16",
"vitest": "^4.1.8",
"vitest-localstorage-mock": "^0.1.2"
}
}