-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.02 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
{
"name": "@teaghy/g-utils",
"type": "module",
"version": "0.1.1",
"private": false,
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Teaghy/g-utils.git"
},
"exports": {
".": {
"import": "./dist/g-utils.js",
"require": "./dist/g-utils.umd.cjs"
}
},
"main": "./dist/g-utils.umd.cjs",
"module": "./dist/g-utils.js",
"files": [
"dist"
],
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"test": "vitest",
"preview": "vite preview",
"publish": "npm run build && npm publish",
"lint:fix": "eslint . --fix"
},
"dependencies": {
"lodash-es": "^4.17.21"
},
"devDependencies": {
"@antfu/eslint-config": "^3.6.2",
"@types/lodash-es": "^4.17.12",
"@types/node": "^22.5.4",
"eslint": "^9.10.0",
"eslint-plugin-format": "^0.1.2",
"typescript": "^5.5.3",
"vite": "^5.4.1",
"vitest": "^2.0.5"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
}
}