-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.21 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.21 KB
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
{
"name": "@wiz-develop/server-clock",
"version": "1.0.11",
"description": "Server-synchronized clock implementation for browsers with WebWorker support",
"type": "module",
"main": "dist/bundle.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"clean": "rimraf dist",
"prepublishOnly": "npm run clean && npm run build",
"preview": "npx http-server -p 8080"
},
"keywords": [
"clock",
"server-time",
"webworker",
"browser"
],
"author": "kakiuchi-shigenao <87973394+endou-mame@users.noreply.github.com>",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^24.0.0",
"@rollup/plugin-node-resolve": "^15.0.0",
"@rollup/plugin-typescript": "^11.0.0",
"rimraf": "^3.0.2",
"rollup": "^3.10.0",
"@rollup/plugin-terser": "^0.4.0",
"typescript": "^5.8.0",
"tslib": "^2.4.0",
"prettier": "^3.3.3",
"prettier-plugin-organize-imports": "^4.1.0",
"@wiz-develop/eslint-config": "^1.0.0",
"eslint-config-prettier": "^9.1.0",
"@types/eslint-config-prettier": "^6.11.3"
}
}