-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.43 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
{
"name": "@iatools/cesm",
"version": "0.4.0",
"description": "",
"main": "dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"package.json",
"README.md",
"LICENSE",
"dist"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"lint:staged": "lint-staged",
"prepare": "husky install",
"test": "vitest",
"coverage": "vitest run --coverage",
"dev": "vite",
"build": "tsup src/index.ts --format esm,cjs --dts --minify",
"preview": "vite preview"
},
"repository": {
"type": "git",
"url": "git+https://github.com/IsaacAderogba/cesm.git"
},
"keywords": [],
"author": "Isaac Aderogba",
"license": "ISC",
"bugs": {
"url": "https://github.com/IsaacAderogba/cesm/issues"
},
"homepage": "https://github.com/IsaacAderogba/cesm#readme",
"devDependencies": {
"@types/node": "^18.6.1",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"husky": "^8.0.1",
"lerna": "^5.3.0",
"lint-staged": "^13.0.3",
"module-alias": "^2.2.2",
"prettier": "^2.7.1",
"tsup": "^6.2.1",
"typescript": "^4.6.4",
"vite": "^3.0.0",
"vite-tsconfig-paths": "^3.5.0",
"vitest": "^0.21.0"
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix"
]
},
"dependencies": {
"uuid": "^8.3.2"
}
}