-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.48 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.48 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
{
"name": "icns-gen",
"version": "1.1.0",
"source": "src",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/cjs/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/esm/index.d.ts",
"default": "./dist/esm/index.js"
},
"require": {
"types": "./dist/cjs/index.d.ts",
"default": "./dist/cjs/index.js"
}
}
},
"scripts": {
"test": "nyc jest .",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"clean": "rimraf dist",
"prebuild": "npm run clean",
"build:cjs": "tsc --project tsconfig.build-cjs.json",
"build:esm": "tsc --project tsconfig.build-esm.json",
"build": "npm run build:cjs && npm run build:esm"
},
"keywords": [
"icns"
],
"author": "yunnysunny",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/whyun-pages/icns-gen.git"
},
"description": "",
"devDependencies": {
"@eslint/js": "^9.33.0",
"@types/jest": "^30.0.0",
"@types/node": "^24.2.1",
"@typescript-eslint/utils": "^8.39.0",
"coveralls": "^3.1.1",
"eslint": "^9.33.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"globals": "^16.3.0",
"jest": "^30.0.5",
"nyc": "^17.1.0",
"prettier": "^3.6.2",
"rimraf": "^6.0.1",
"ts-jest": "^29.4.1",
"tsx": "^4.19.2",
"typescript-eslint": "^8.39.0"
}
}