-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.34 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
76
77
78
79
80
{
"name": "locter",
"version": "2.1.2",
"description": "A library to locate a file/module by criteria and load it!",
"author": {
"name": "Peter Placzek",
"email": "contact@tada5hi.net",
"url": "https://github.com/tada5hi"
},
"repository": {
"type": "git",
"url": "https://github.com/tada5hi/locter.git"
},
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.mjs"
}
},
"files": [
"dist/"
],
"scripts": {
"build:types": "tsc --emitDeclarationOnly",
"build:js": "rollup -c",
"build": "rimraf dist && npm run build:types && npm run build:js",
"commit": "npx git-cz",
"test": "cross-env NODE_ENV=test jest --config ./test/jest.config.js",
"test:coverage": "cross-env NODE_ENV=test jest --config ./test/jest.config.js --coverage",
"lint": "eslint --ext .js,.vue,.ts ./src",
"lint:fix": "npm run lint -- --fix",
"prepare": "npx husky install"
},
"keywords": [
"file",
"loader",
"transpiling",
"compiler",
"loading",
"on-demand-transpiling",
"locator",
"file-extension",
"transpiling",
"typescript"
],
"license": "MIT",
"devDependencies": {
"@rollup/plugin-esm-shim": "^0.1.7",
"@rollup/plugin-node-resolve": "^15.3.0",
"@swc/core": "^1.7.28",
"@swc/jest": "^0.2.36",
"@tada5hi/commitlint-config": "^1.2.2",
"@tada5hi/eslint-config-typescript": "^1.2.12",
"@tada5hi/semantic-release": "^0.3.1",
"@tada5hi/tsconfig": "^0.5.1",
"@types/flat": "^5.0.2",
"@types/jest": "^29.5.12",
"@types/node": "^22.7.2",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"husky": "^9.1.6",
"jest": "^29.6.4",
"rimraf": "^6.0.1",
"rollup": "^4.24.0",
"semantic-release": "^22.0.8",
"typescript": "^5.6.2"
},
"dependencies": {
"destr": "^2.0.3",
"ebec": "^2.3.0",
"fast-glob": "^3.3.2",
"flat": "^5.0.2",
"jiti": "^2.3.3",
"yaml": "^2.5.1"
}
}