-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.44 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
{
"name": "solid-js-timers",
"private": false,
"version": "1.0.2",
"description": "Timer hooks for solid-js.",
"author": "funny-family <https://github.com/funny-family>",
"repository": {
"type": "git",
"url": "git+https://github.com/funny-family/solid-js-timers.git"
},
"homepage": "https://github.com/funny-family/solid-js-timers#readme",
"bugs": {
"url": "https://github.com/funny-family/solid-js-timers/issues"
},
"license": "MIT",
"keywords": [
"solid",
"solid js",
"solid-js",
"solid-js-timers",
"timer",
"timers",
"time"
],
"type": "module",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
},
"./*": "./*"
},
"sideEffects": false,
"files": [
"dist"
],
"scripts": {
"dev": "concurrently \"rm -rf ./dist\" \"pnpm build:watch\"",
"build": "vite build",
"build:watch": "vite build --watch",
"link-package": "./scripts/link-package.sh",
"release": "release-it",
"publish": "./scripts/publish.sh"
},
"devDependencies": {
"@types/node": "^20.5.4",
"concurrently": "^8.2.1",
"release-it": "^15.11.0",
"typescript": "^5.1.6",
"vite": "^4.4.9",
"vite-plugin-dts": "^2.3.0"
},
"peerDependencies": {
"solid-js": "^1.7.11"
}
}