-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.28 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.28 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"author": {
"email": "narukeu@outlook.com",
"name": "Luke Na",
"url": "https://narukeu.github.io"
},
"bugs": {
"url": ""
},
"description": "",
"devDependencies": {
"@biomejs/biome": "2.2.4",
"@jest/globals": "^30.1.2",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.4",
"@types/node": "^24.5.2",
"jest": "^30.1.3",
"rimraf": "^6.0.1",
"rollup": "^4.52.3",
"rollup-plugin-dts": "^6.2.3",
"rollup-plugin-node-externals": "^8.1.1",
"ts-jest": "^29.4.4",
"tslib": "^2.8.1",
"typescript": "^5.9.2"
},
"engines": {
"node": ">=20"
},
"exports": {
"import": "./dist/esm/index.mjs",
"require": "./dist/cjs/index.cjs",
"types": "./dist/types/index.d.ts"
},
"files": [
"dist"
],
"homepage": "",
"keywords": [
"typescript",
"utility"
],
"license": "MIT",
"name": "@oktils/template",
"repository": {
"type": "git",
"url": ""
},
"scripts": {
"build": "pnpm clean && rollup -c",
"clean": "rimraf dist",
"dev": "rollup -c -w",
"format": "biome format --write",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"test": "jest",
"type-check": "tsc --noEmit"
},
"type": "module",
"version": "1.0.0-alpha.0"
}