-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.88 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": "tikjs",
"version": "0.3.0",
"description": "Fast lightweight library for formatting time in JavaScript",
"main": "dist/index.js",
"module": "dist/index.es.js",
"jsnext:main": "dist/index.es.js",
"types": "dist/tikjs.d.ts",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/nascjoao/tikjs"
},
"homepage": "https://tik.js.org",
"scripts": {
"build": "rollup -c",
"format": "prettier --write",
"format:check": "prettier --check .",
"lint": "eslint",
"test": "jest",
"test:watch": "jest --watchAll",
"size": "size-limit && gzip-size dist/*",
"docs:dev": "tailwindcss -i ./docs/index.css -o ./docs/output.css --watch"
},
"size-limit": [
{
"path": "dist",
"limit": "1.99 kB"
}
],
"keywords": [
"dayjs",
"time",
"moment",
"lightweight",
"format"
],
"author": "nascjoao",
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.9.0",
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@size-limit/preset-small-lib": "^11.1.4",
"@types/jest": "^29.5.12",
"eslint": "^9.9.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.9.0",
"gzip-size-cli": "^5.1.0",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"rollup": "^4.20.0",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-dts": "^6.1.1",
"size-limit": "^11.1.4",
"tailwindcss": "^3.4.10",
"ts-jest": "^29.2.4",
"typescript": "^5.5.4",
"typescript-eslint": "^8.1.0"
}
}