-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.28 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": "tinydateformat2",
"version": "1.0.0",
"description": "Date formatting tool in less than 1kb",
"main": "dist/tinydateformat.cjs",
"module": "dist/tinydateformat.mjs",
"types": "dist/index.d.ts",
"scripts": {
"test": "vitest",
"build": "rollup -c && npm run build:docs",
"build:docs": "tsc index.js --declaration --allowJs --emitDeclarationOnly --outDir dist",
"lint": "eslint index.js && prettier --check index.js",
"lint:fix": "eslint --fix index.js && prettier --check --write index.js"
},
"exports": {
"import": "./dist/tinydateformat.mjs",
"require": "./dist/tinydateformat.cjs",
"types":"./dist/index.d.ts"
},
"repository": {
"type": "git",
"url": "https://github.com/CreateWheel/tinydateformat2.git"
},
"keywords": [
"tiny",
"date",
"format",
"utils"
],
"files": [
"dist"
],
"author": "Lete114",
"license": "MIT",
"bugs": {
"url": "https://github.com/CreateWheel/tinydateformat2/issues"
},
"homepage": "https://github.com/CreateWheel/tinydateformat2#readme",
"devDependencies": {
"eslint": "^8.35.0",
"prettier": "^2.8.4",
"rollup": "^3.19.0",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^5.0.2",
"vitest": "^0.29.2"
}
}