-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
35 lines (35 loc) · 1.09 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
{
"name": "retil-source",
"version": "0.28.4",
"description": "Utilities to create and combine suspendable, reactive sources",
"author": "James K Nelson <[email protected]>",
"license": "MIT",
"main": "dist/commonjs/index.js",
"module": "dist/es/index.js",
"types": "dist/es/index.d.ts",
"scripts": {
"clean": "rimraf dist",
"build:commonjs": "tsc -p tsconfig.build.json --module commonjs --outDir dist/commonjs",
"build:es-and-types": "tsc -p tsconfig.build.json --module es2015 --outDir dist/es --declaration",
"build": "yarn run clean && yarn build:es-and-types && yarn build:commonjs",
"build:watch": "yarn run clean && yarn build:es-and-types -- --watch",
"lint": "eslint --ext ts,tsx src",
"prepare": "yarn test && yarn build",
"test": "jest",
"test:watch": "jest --watch"
},
"dependencies": {
"retil-support": "^0.28.4",
"tslib": "^2.2.0"
},
"devDependencies": {
"typescript": "4.6.2"
},
"peerDependencies": {
"react": "^17.0.1"
},
"files": [
"dist"
],
"gitHead": "9d352aa11ce02bdf184dfe8ff15a90a3ad4543bc"
}