-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
83 lines (83 loc) · 2.47 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "@ably/spaces",
"version": "0.4.0",
"description": "",
"main": "dist/cjs/index.js",
"module": "dist/mjs/index.js",
"types": "dist/mjs/index.d.ts",
"unpkg": "dist/iife/index.bundle.js",
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"format": "prettier --write src demo __mocks__ test",
"format:check": "prettier --check src demo __mocks__ test",
"test": "vitest run",
"test:watch": "vitest watch",
"test:cdn-bundle": "npx playwright test -c test/cdn-bundle/playwright.config.js",
"test-support:cdn-server": "ts-node test/cdn-bundle/server.ts",
"coverage": "vitest run --coverage",
"build": "npm run build:mjs && npm run build:cjs && npm run build:iife",
"build:mjs": "npx tsc --project tsconfig.mjs.json && cp res/package.mjs.json dist/mjs/package.json",
"build:cjs": "npx tsc --project tsconfig.cjs.json && cp res/package.cjs.json dist/cjs/package.json",
"build:iife": "rm -rf dist/iife && npx tsc --project tsconfig.iife.json && rollup -c",
"examples:locks": "ts-node ./examples/locks.ts",
"docs": "typedoc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ably/spaces.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": ""
},
"homepage": "https://github.com/ably/spaces",
"publishConfig": {
"access": "public"
},
"keywords": [],
"devDependencies": {
"@playwright/test": "^1.39.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@testing-library/react": "^14.0.0",
"@types/express": "^4.17.18",
"@types/react": "^18.2.23",
"@types/react-dom": "^18.2.8",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"@vitest/coverage-c8": "^0.33.0",
"@vitest/coverage-v8": "^0.34.6",
"eslint": "^8.33.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsdoc": "^46.7.0",
"eslint-plugin-security": "^1.7.1",
"express": "^4.18.2",
"jsdom": "^22.1.0",
"prettier": "^3.0.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup": "^4.5.0",
"ts-node": "^10.9.1",
"typedoc": "^0.25.2",
"typescript": "^5.2.2",
"vitest": "^0.34.3"
},
"dependencies": {
"nanoid": "^3.3.7"
},
"peerDependencies": {
"ably": "^2.3.0",
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"peerDependenciesMeta": {
"react": {
"optional": true
},
"react-dom": {
"optional": true
}
}
}