-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 977 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 977 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
35
36
37
38
{
"name": "@dungeonmaster/snaputils",
"version": "1.6.0",
"type": "module",
"description": "A lightweight utility library for string, number, and date formatting",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "types/index.d.ts",
"exports": {
".": {
"import": "./dist/index.esm.js",
"require": "./dist/index.cjs.js"
}
},
"scripts": {
"build": "npx rollup -c",
"dev": "npx rollup -c -w",
"test": "node --experimental-vm-modules node_modules/jest-cli/bin/jest.js"
},
"jest": {
"transform": {},
"testMatch": ["**/tests/**/*.test.js"]
},
"keywords": ["utils", "helpers", "formatters", "date", "string", "number"],
"author": "Your Name",
"license": "MIT",
"files": [
"dist",
"types"
],
"devDependencies": {
"@rollup/plugin-commonjs": "^29.0.2",
"@rollup/plugin-node-resolve": "^16.0.3",
"jest": "^30.3.0",
"prettier": "^3.8.3",
"rollup": "^4.60.2"
}
}