-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.1 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
{
"name": "@lilbunnyrabbit/statefulia",
"version": "0.0.0-alpha",
"description": "JavaScript/TypeScript library for state management.",
"keywords": [
"node",
"npm",
"javascript",
"typescript"
],
"homepage": "https://github.com/lilBunnyRabbit/statefulia#readme",
"bugs": {
"url": "https://github.com/lilBunnyRabbit/statefulia/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/lilBunnyRabbit/statefulia.git"
},
"license": "MIT",
"author": "Andraž Mesarič-Sirec <amesaricsirec@gmail.com>",
"exports": {
".": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
},
"./package.json": "./package.json"
},
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"files": [
"lib/",
"package.json",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"test": "jest"
},
"devDependencies": {
"@types/jest": "^29.5.2",
"jest-environment-jsdom": "^29.5.0",
"ts-jest": "^29.1.0",
"typescript": "^5.1.3"
},
"engines": {
"node": ">=16.0.0",
"npm": ">=8.0.0"
}
}