-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.16 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.16 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
{
"name": "rsformat",
"version": "1.4.0",
"description": "Formatting/printing library for JavaScript that takes after rust's string formatting ",
"files": [
"lib",
"README.md",
"docs.md"
],
"exports": {
".": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
},
"./*": {
"types": "./lib/*.d.ts",
"default": "./lib/*.js"
}
},
"scripts": {
"build": "pnpm exec tsc",
"build:test": "pnpm exec tsc -p tsconfig.test.json",
"prepublishOnly": "pnpm build",
"pretest": "pnpm build && pnpm build:test",
"test": "pnpm exec jest test-build",
"posttest": "rm -r test-build"
},
"keywords": [
"fmt",
"format",
"strings",
"print",
"println",
"printf",
"console",
"log",
"console.log"
],
"author": "Alfio (https://github.com/p2js)",
"license": "ISC",
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^22.8.6",
"jest": "^30.2.0",
"typescript": "^5.9.3"
},
"packageManager": "pnpm@9.14.2+sha512.6e2baf77d06b9362294152c851c4f278ede37ab1eba3a55fda317a4a17b209f4dbb973fb250a77abc463a341fcb1f17f17cfa24091c4eb319cda0d9b84278387"
}