-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
48 lines (48 loc) · 1.19 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
{
"name": "bubble-reactivity",
"version": "0.0.0",
"description": "",
"license": "ISC",
"type": "module",
"main": "dist/node.cjs",
"module": "dist/prod.js",
"types": "dist/types/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rimraf dist && tsup && pnpm types",
"types": "tsc -p tsconfig.build.json",
"format": "prettier --write .",
"test": "vitest",
"lint": "eslint .",
"gc": "node --expose-gc ./vitest_gc.js",
"coverage": "vitest run --coverage"
},
"devDependencies": {
"@types/node": "^22.7.4",
"@typescript-eslint/eslint-plugin": "^8.7.0",
"@typescript-eslint/parser": "^8.7.0",
"@vitest/coverage-v8": "^2.1.1",
"eslint": "^9.11.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"tsup": "^8.3.0",
"typescript": "5.6.2",
"vite": "^5.4.8",
"vitest": "^2.1.1"
},
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": {
"test": "./dist/dev.js",
"development": "./dist/dev.js",
"default": "./dist/prod.js"
},
"require": "./dist/node.cjs"
}
}
}