-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.21 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
{
"name": "@animaapp/anima-sdk-monorepo",
"private": true,
"workspaces": [
"./sdk",
"./sdk-react"
],
"version": "0.0.4",
"type": "module",
"description": "Anima's JavaScript utilities library",
"author": "Anima App, Inc.",
"license": "ISC",
"packageManager": "[email protected]",
"exports": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/AnimaApp/anima-sdk.git"
},
"scripts": {
"build": "turbo run build",
"publish-github": "export npm_config_registry=https://npm.pkg.github.com && turbo run build && changeset version && changeset publish",
"publish-npm": "export npm_config_registry=https://registry.npmjs.org && turbo run build && changeset version && changeset publish"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.2.1",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"eslint": "^8.57.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-unused-imports": "^3.0.0",
"turbo": "^2.4.0",
"typescript": "^5.7.3"
},
"dependencies": {
"@changesets/cli": "^2.27.12"
}
}