-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 979 Bytes
/
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
{
"name": "@giraugh/tools",
"private": false,
"version": "2.3.1",
"type": "module",
"license": "MIT",
"author": "Ewan Breakey (https://ewanb.me)",
"repository": "github:giraugh/tools",
"description": "Generic typescript utilities built with simplicity in mind",
"keywords": [
"utility",
"typescript",
"arrays",
"objects",
"promises"
],
"files": [
"dist"
],
"main": "./dist/main.js",
"types": "./dist/main.d.ts",
"exports": {
".": {
"import": "./dist/main.js",
"require": "./dist/main.umd.cjs"
}
},
"scripts": {
"build": "tsc && vite build",
"test": "vitest",
"docs": "typedoc --out docs lib/**/index.ts",
"ci:release": "yarn build && yarn changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.26.1",
"typedoc": "^0.24.4",
"typescript": "^4.6.4",
"vercel": "^28.19.0",
"vite": "^4.2.1",
"vite-plugin-dts": "^1.6.5",
"vitest": "^0.30.0"
}
}