-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·75 lines (75 loc) · 1.68 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
67
68
69
70
71
72
73
74
75
{
"name": "splitea",
"version": "1.0.0",
"description": "Splitea is a utility to split images in different sizes",
"author": "Cristóbal Contreras Rubio",
"license": "MIT",
"homepage": "https://github.com/crisconru/splitea#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/crisconru/splitea.git"
},
"bugs": {
"url": "https://github.com/crisconru/splitea/issues"
},
"keywords": [
"split",
"tiles",
"images"
],
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"sideEffects": false,
"files": [
"dist"
],
"scripts": {
"start": "node dist/index.js",
"lint": "ts-standard",
"format": "ts-standard --fix",
"dev": "ts-node-dev src/index.ts",
"test": "vitest",
"test:coverage": "vitest run --coverage",
"build": "tsup && cp src/filename-reserved-regex.d.ts dist"
},
"dependencies": {
"@schemasjs/valibot-numbers": "^1.0.12",
"@schemasjs/validator": "^1.0.0",
"jimp": "^0.22.12",
"valibot": "^0.33.3",
"valid-filename": "^4.0.0"
},
"devDependencies": {
"@vitest/coverage-v8": "^1.6.0",
"ts-node-dev": "^2.0.0",
"ts-standard": "^12.0.2",
"tsup": "^8.1.0",
"typescript": "^5.5.2",
"vitest": "^1.6.0"
},
"ts-standard": {
"ignore": [
"tests",
"vitest.config.ts",
"tsup.config.ts"
]
},
"eslintConfig": {
"parserOptions": {
"project": "./tsconfig.json"
}
}
}