-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.59 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
{
"name": "@sbp/okturtles.eventqueue",
"version": "1.2.0",
"description": "Synchronize asynchronous SBP invocations",
"main": "dist/umd/index.js",
"module": "dist/esm/index.js",
"type": "module",
"exports": {
".": {
"import": {
"types": "./dist/esm/index.d.ts",
"default": "./dist/esm/index.js"
},
"require": {
"types": "./dist/umd/index.d.ts",
"default": "./dist/umd/index.cjs"
}
}
},
"homepage": "https://github.com/okTurtles/okTurtles.eventQueue",
"scripts": {
"test": "node --test --no-warnings=ExperimentalWarning src/index.test.js",
"build:esm": "tsc --project tsconfig.json --declaration",
"build:umd": "tsc --project tsconfig.umd.json --declaration && mv ./dist/umd/index.js ./dist/umd/index.cjs",
"build": "npm run build:esm && npm run build:umd",
"lint": "eslint",
"clean": "rm -f dist/*"
},
"browserslist": "> 0.25% and not dead and since 2020",
"contributors": [
"Greg Slepak",
"Ricardo Iván Vieitez Parra"
],
"license": "MIT",
"eslintConfig": {
"root": true,
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint"
],
"extends": [
"plugin:@typescript-eslint/recommended",
"standard"
]
},
"eslintIgnore": [
"dist/*",
"node_modules/*",
"**/*.md"
],
"devDependencies": {
"@typescript-eslint/eslint-plugin": "6.7.5",
"eslint-config-standard": "17.0.0-0",
"typescript": "5.2.2"
},
"dependencies": {
"@sbp/okturtles.data": "^0.1.5"
},
"peerDependencies": {
"@sbp/sbp": "2.x"
}
}