-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 722 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 722 Bytes
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
{
"author": "Ralph Largo",
"name": "largs-utils",
"version": "0.16.0",
"main": "lib/src/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/",
"README.md",
"package.json"
],
"scripts": {
"build": "swc src -d lib --copy-files && tsc --emitDeclarationOnly && rimraf lib/src/__tests__",
"test": "jest --runInBand --coverage"
},
"devDependencies": {
"@swc/cli": "^0.4.0",
"@swc/core": "^1.7.6",
"@types/jest": "^29.5.12",
"@types/node": "^22.1.0",
"jest": "^29.7.0",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.4",
"typescript": "^5.5.4"
},
"keywords": [
"largs",
"largs-utils",
"devlargs"
],
"dependencies": {
"uuid": "^11.1.0"
}
}