@stinkycomputing/cachearoo 1.0.24

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,36 @@
1
+ {
2
+ "name": "@stinkycomputing/cachearoo",
3
+ "version": "1.0.24",
4
+ "type": "commonjs",
5
+ "description": "Cachearoo Client for Node.js",
6
+ "main": "dist/cachearoo-node.js",
7
+ "module": "dist/cachearoo.es.js",
8
+ "types": "dist/cachearoo.d.ts",
9
+ "dependencies": {
10
+ "node-fetch-commonjs": "^3.3.1",
11
+ "websocket": "^1.0.34"
12
+ },
13
+ "devDependencies": {
14
+ "@types/chai": "^4.3.0",
15
+ "@types/mocha": "^9.1.0",
16
+ "@types/node": "^16.6.1",
17
+ "@types/websocket": "^1.0.5",
18
+ "typescript": "^4.3.5",
19
+ "vite": "^4.4.9",
20
+ "vite-plugin-dts": "^3.3.1",
21
+ "vite-plugin-node-polyfills": "^0.9.0",
22
+ "vitest": "^0.34.1"
23
+ },
24
+ "scripts": {
25
+ "test": "vitest run",
26
+ "build": "vite build && tsc --project tsconfig-node.json",
27
+ "build-tsc": "tsc"
28
+ },
29
+ "repository": {
30
+ "type": "git",
31
+ "url": "https://github.com/stinkydev/cachearoo-js.git"
32
+ },
33
+ "keywords": [],
34
+ "author": "Peter Eriksson",
35
+ "license": "MIT"
36
+ }
@@ -0,0 +1,32 @@
1
+ {
2
+ "compilerOptions": {
3
+ "outDir": "./dist",
4
+ "module": "CommonJS",
5
+ "target": "ESNext",
6
+ "skipLibCheck": true,
7
+ "noImplicitAny": false,
8
+ "removeComments": true,
9
+ "preserveConstEnums": true,
10
+ "declaration": true,
11
+ "sourceMap": false,
12
+ "lib": ["ESNext"],
13
+ "strict": true,
14
+
15
+ /* Bundler mode */
16
+ "moduleResolution": "Node",
17
+ "resolveJsonModule": true,
18
+ "isolatedModules": true,
19
+ "noEmit": false,
20
+
21
+ /* Linting */
22
+ "noUnusedLocals": true,
23
+ "noUnusedParameters": true,
24
+ "noFallthroughCasesInSwitch": true
25
+ },
26
+ "include": [
27
+ "cachearoo-node.ts",
28
+ "libs/*"
29
+ ],
30
+ "exclude": [
31
+ ]
32
+ }