-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.01 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
{
"name": "mapping-data",
"version": "1.0.1",
"description": "Mapping data with map or object in the same interface and support types Key and value in typescript",
"scripts": {
"build": "tsup",
"test:node": "node ./test/test.js",
"publish:package": "npm run build && npm publish"
},
"homepage": "https://github.com/damartripamungkas/mapping-data",
"repository": {
"type": "git",
"url": "https://github.com/damartripamungkas/mapping-data.git"
},
"keywords": [
"state",
"mapping",
"map",
"object",
"store",
"store-data",
"fast-store-data",
"mapping-data",
"data-mapping"
],
"main": "./dist/src/index.js",
"module": "./dist/src/index.mjs",
"types": "./dist/src/index.d.ts",
"files": [
"dist"
],
"author": "damartripamungkas",
"license": "MIT",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^7.7.0",
"@typescript-eslint/parser": "^7.7.0",
"eslint": "^9.0.0",
"logging-pretty": "^1.8.8",
"tsup": "^8.0.2"
}
}