-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 934 Bytes
/
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
{
"name": "@igor.dvlpr/$1",
"version": "1.0.0",
"description": "$2",
"sideEffects": false,
"engines": {
"node": ">=18.0"
},
"types": "./dist/index.d.mts",
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"test": "vitest --run",
"debug": "vitest",
"pub": "npm test && npm run build && npm publish --access public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/igorskyflyer/$3.git"
},
"keywords": [
$4,
"igorskyflyer",
"igor.dvlpr"
],
"author": "Igor Dimitrijević <igor.dvlpr@gmail.com> (https://github.com/igorskyflyer)",
"license": "MIT",
"funding": "https://ko-fi.com/igorskyflyer",
"bugs": {
"url": "https://github.com/igorskyflyer/$3/issues"
},
"homepage": "https://github.com/igorskyflyer/$3#readme",
"devDependencies": {
"@types/node": "^18.0.0",
"typescript": "^5.1.6",
"vitest": "^0.32.4"
}
}