-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.96 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
{
"name": "@cosmicmind/foundationjs",
"version": "0.0.1-rc-072224-1",
"description": "A library of helpful tools for developing projects in TypeScript.",
"keywords": [],
"author": {
"name": "Daniel Jonathan",
"email": "daniel@cosmicverse.org"
},
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "https://github.com/cosmicmind/foundationjs.git"
},
"publishConfig": {
"access": "public"
},
"type": "module",
"main": "dist/lib-cjs.cjs",
"module": "dist/lib-es.js",
"types": "dist/src/index.d.ts",
"exports": {
".": {
"import": "./dist/lib-es.js",
"require": "./dist/lib-cjs.cjs"
}
},
"files": [
"dist",
"LICENSE",
"README.md",
"package.json"
],
"scripts": {
"lint": "eslint --fix --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts",
"release": "run-s release:lib",
"release:lib": "vite build --config vite.config.ts --mode ${VITE_MODE:-production}",
"develop": "run-s develop:lib",
"develop:lib": "vite build --config vite.config.ts --mode ${VITE_MODE:-development}",
"watch": "run-p watch:lib",
"watch:lib": "vite build --watch --config vite.config.ts --mode ${VITE_MODE:-development}",
"test": "run-s test:unit",
"test:unit": "vitest run --config vite.config.test.ts --mode ${VITE_MODE:-test}",
"test:coverage": "vitest run --coverage --config vite.config.test.ts --mode ${VITE_MODE:-test}"
},
"dependencies": {
"npm-run-all": "^4.1.5",
"terser": "^5.31.3",
"ts-node": "^10.9.2",
"tslib": "^2.6.3",
"typescript": "^5.5.3",
"vite": "^5.3.4",
"vite-plugin-dts": "^1.7.3",
"vitest": "^1.6.0",
"yup": "^1.4.0"
},
"devDependencies": {
"@microsoft/eslint-formatter-sarif": "^3.1.0",
"@types/node": "^20.14.11",
"@typescript-eslint/eslint-plugin": "^7.16.1",
"@typescript-eslint/parser": "^7.16.1",
"@vitest/coverage-v8": "^1.6.0",
"eslint": "^8.57.0",
"eslint-plugin-yml": "^1.14.0"
}
}