-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
53 lines (53 loc) · 1.32 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
{
"name": "@solidjs/signals",
"version": "0.0.6",
"description": "",
"author": "Ryan Carniato",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/solidjs/signals"
},
"type": "module",
"main": "dist/node.cjs",
"module": "dist/prod.js",
"types": "dist/types/index.d.ts",
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"scripts": {
"build": "rimraf dist && tsup && pnpm types",
"types": "tsc -p tsconfig.build.json",
"format": "prettier src tests --write --log-level warn",
"sandbox": "node ./.sandbox/launch.js",
"test": "vitest run",
"test:watch": "vitest watch tests",
"test:gc": "node --expose-gc ./vitest.js",
"test:gc:watch": "node --expose-gc ./vitest.js --watch",
"test:coverage": "vitest run --coverage",
"bench": "vitest bench --run"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.1.1",
"@types/node": "^20.5.1",
"rimraf": "^5.0.1",
"tsup": "^7.2.0",
"typescript": "5.1.6",
"vite": "^5.4.10",
"vitest": "^2.0.0"
},
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": {
"test": "./dist/dev.js",
"development": "./dist/dev.js",
"default": "./dist/prod.js"
},
"require": "./dist/node.cjs"
}
}
}