Skip to content

Commit

Permalink
remove yarn lock
Browse files Browse the repository at this point in the history
  • Loading branch information
mikeldking committed Sep 13, 2024
1 parent 55e0c57 commit 49bd8cf
Show file tree
Hide file tree
Showing 4 changed files with 111 additions and 13,274 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@ jobs:

- name: Install deps and build (with cache)
uses: bahmutov/npm-install@v1
with:
useLockFile: false

- name: Test
run: yarn test --ci --coverage --maxWorkers=2
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@ node_modules
dist
.vscode
storybook-static
yarn.lock
220 changes: 108 additions & 112 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,115 +1,111 @@
{
"name": "@arizeai/point-cloud",
"version": "3.0.6",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=10"
},
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test --passWithNoTests",
"lint": "eslint ./src",
"lint:ts:fix": "eslint --fix ./src",
"prettier": "prettier --write './src/**/*'",
"prettier:check": "prettier --check './src/**/*'",
"prepare": "tsdx build",
"size": "size-limit",
"analyze": "size-limit --why",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"chromatic": "npx chromatic --project-token=46df7a59e0a8"
},
"peerDependencies": {
"@react-three/drei": "^9.105.5",
"@react-three/fiber": "^8.0.12",
"react": ">=18",
"three": "^0.139.2",
"three-stdlib": "2.23.9"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"prettier": {
"tabWidth": 4,
"semi": true,
"singleQuote": false,
"trailingComma": "all"
},
"author": "Mikyo King <[email protected]>",
"module": "dist/point-cloud.esm.js",
"size-limit": [
{
"path": "dist/point-cloud.cjs.production.min.js",
"limit": "800 KB"
"name": "@arizeai/point-cloud",
"version": "3.0.6",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=10"
},
{
"path": "dist/point-cloud.esm.js",
"limit": "10 KB"
}
],
"devDependencies": {
"@babel/core": "^7.17.9",
"@babel/preset-react": "^7.24.1",
"@react-three/drei": "^9.105.5",
"@react-three/fiber": "8.13.3",
"@size-limit/preset-small-lib": "^7.0.8",
"@storybook/addon-a11y": "^8.0.9",
"@storybook/addon-essentials": "^8.0.9",
"@storybook/addon-info": "^5.3.21",
"@storybook/addon-links": "^8.0.9",
"@storybook/addon-webpack5-compiler-babel": "^3.0.3",
"@storybook/addons": "^7.6.17",
"@storybook/react": "^8.0.9",
"@storybook/react-webpack5": "^8.0.9",
"@types/d3-scale-chromatic": "^3.0.3",
"@types/react": "^18.0.8",
"@types/react-dom": "^18.0.0",
"@types/three": "^0.139.0",
"@typescript-eslint/eslint-plugin": "^7.7.1",
"@typescript-eslint/parser": "^7.7.1",
"babel-loader": "^8.2.5",
"chromatic": "^6.5.4",
"d3-scale-chromatic": "^3.0.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-unused-imports": "^3.1.0",
"husky": "^7.0.4",
"react": "18",
"react-dom": "18",
"react-is": "^18.1.0",
"size-limit": "^7.0.8",
"storybook": "^8.0.9",
"three": "^0.153.0",
"tsdx": "^0.14.1",
"tslib": "^2.4.0",
"typescript": "^5.4.5"
},
"description": "A point cloud library for visualizing point clouds using 2D and 3D canvases.",
"directories": {
"example": "example",
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Arize-ai/point-cloud.git"
},
"keywords": [
"point-cloud"
],
"bugs": {
"url": "https://github.com/Arize-ai/point-cloud/issues"
},
"homepage": "https://github.com/Arize-ai/point-cloud#readme"
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test --passWithNoTests",
"lint": "eslint ./src",
"lint:ts:fix": "eslint --fix ./src",
"prettier": "prettier --write './src/**/*'",
"prettier:check": "prettier --check './src/**/*'",
"prepare": "tsdx build",
"size": "size-limit",
"analyze": "size-limit --why",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"chromatic": "npx chromatic --project-token=46df7a59e0a8"
},
"peerDependencies": {
"@react-three/drei": "^9.105.5",
"@react-three/fiber": "^8.0.12",
"react": ">=18",
"three": "^0.139.2",
"three-stdlib": "2.23.9"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"prettier": {
"tabWidth": 4,
"semi": true,
"singleQuote": false,
"trailingComma": "all"
},
"author": "Mikyo King <[email protected]>",
"module": "dist/point-cloud.esm.js",
"size-limit": [
{
"path": "dist/point-cloud.cjs.production.min.js",
"limit": "800 KB"
},
{
"path": "dist/point-cloud.esm.js",
"limit": "10 KB"
}
],
"devDependencies": {
"@babel/core": "^7.17.9",
"@babel/preset-react": "^7.24.1",
"@react-three/drei": "^9.105.5",
"@react-three/fiber": "8.13.3",
"@size-limit/preset-small-lib": "^7.0.8",
"@storybook/addon-webpack5-compiler-babel": "^3.0.3",
"@storybook/addons": "^7.6.17",
"@storybook/react": "^8.0.9",
"@storybook/react-webpack5": "^8.0.9",
"@types/d3-scale-chromatic": "^3.0.3",
"@types/react": "^18.0.8",
"@types/react-dom": "^18.0.0",
"@types/three": "^0.139.0",
"@typescript-eslint/eslint-plugin": "^7.7.1",
"@typescript-eslint/parser": "^7.7.1",
"babel-loader": "^8.2.5",
"chromatic": "^6.5.4",
"d3-scale-chromatic": "^3.0.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-unused-imports": "^3.1.0",
"husky": "^7.0.4",
"react": "18",
"react-dom": "18",
"react-is": "^18.1.0",
"size-limit": "^7.0.8",
"storybook": "^8.0.9",
"three": "^0.153.0",
"tsdx": "^0.14.1",
"tslib": "^2.4.0",
"typescript": "^5.4.5"
},
"description": "A point cloud library for visualizing point clouds using 2D and 3D canvases.",
"directories": {
"example": "example",
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Arize-ai/point-cloud.git"
},
"keywords": [
"point-cloud"
],
"bugs": {
"url": "https://github.com/Arize-ai/point-cloud/issues"
},
"homepage": "https://github.com/Arize-ai/point-cloud#readme"
}
Loading

0 comments on commit 49bd8cf

Please sign in to comment.