-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.72 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "reactive-box",
"version": "0.9.0",
"description": "Minimalistic, fast, and highly efficient reactivity",
"types": "src/index.d.ts",
"main": "dist/reactive-box.js",
"module": "dist/reactive-box.module.js",
"umd:main": "dist/reactive-box.umd.js",
"source": "src/index.js",
"files": [
"src",
"dist"
],
"scripts": {
"bootstrap": "yarn && yarn build",
"publish": "lerna publish",
"test": "jest",
"format": "prettier -w src/** tests/**",
"test:perf:tree": "node ./tests/perf/tree.js",
"clean": "rm -rf dist",
"build": "yarn clean && microbundle build --raw --target web --generateTypes false",
"dev": "microbundle watch --raw --format cjs"
},
"devDependencies": {
"@babel/preset-env": "7.23.5",
"@babel/preset-typescript": "7.23.3",
"jest": "29.7.0",
"lerna": "3.22.1",
"microbundle": "0.15.1",
"prettier": "2.2.0",
"simple-statistics": "7.3.2"
},
"sideEffects": false,
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/re-js/reactive-box.git"
},
"keywords": [
"reactivity",
"reactive",
"box",
"minimal",
"minimalistic",
"lightweight",
"observer",
"observable",
"reaction",
"performance"
],
"author": "Slava Birch <mail@betula.co>",
"license": "MIT",
"bugs": {
"url": "https://github.com/re-js/reactive-box/issues"
},
"homepage": "https://github.com/re-js/reactive-box#readme",
"exports": {
".": {
"types": "./src/index.d.ts",
"browser": "./dist/reactive-box.module.js",
"umd": "./dist/reactive-box.umd.js",
"import": "./dist/reactive-box.mjs",
"require": "./dist/reactive-box.js"
}
}
}