-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
76 lines (76 loc) · 1.51 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
{
"name": "animatronic",
"version": "1.2.1",
"description": "NodeJS, Bun and Deno library to animate numeric values with ease.",
"type": "module",
"main": "dist/index.cjs",
"exports": {
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
},
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"default": "./dist/index.js"
},
"scripts": {
"build": "tsup",
"prepublish": "tsup",
"test": "ava",
"prepare": "husky"
},
"dependencies": {
"type-fest": "^4.10.3"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@gamestdio/timer": "^1.4.1",
"@types/sinon": "^17.0.3",
"ava": "^6.1.1",
"husky": "^9.0.11",
"sinon": "^17.0.1",
"tsup": "^8.0.2",
"tsx": "^4.7.1",
"typescript": "^5.3.3",
"xo": "^0.57.0"
},
"ava": {
"timeout": "5s",
"extensions": {
"ts": "module"
},
"nodeArguments": [
"--import=tsx/esm"
],
"workerThreads": false
},
"xo": {
"prettier": true,
"rules": {
"no-mixed-spaces-and-tabs": "off",
"no-mixed-operators": "off",
"no-return-assign": "off"
}
},
"prettier": {
"bracketSpacing": true,
"singleQuote": false,
"printWidth": 110
},
"repository": {
"type": "git",
"url": "https://github.com/ScreamZ/Animatronic"
},
"keywords": [
"animation",
"NodeJS",
"Bun",
"Deno",
"DMX",
"PWM"
],
"author": "Andréas HANSS",
"license": "MIT"
}